mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-05-09 03:56:04 +03:00
Move source to src/
This commit is contained in:
parent
580e630148
commit
0a11cdd791
131 changed files with 0 additions and 0 deletions
13
src/DotTiled/Model/Layers/ImageLayer.cs
Normal file
13
src/DotTiled/Model/Layers/ImageLayer.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
namespace DotTiled;
|
||||
|
||||
public class ImageLayer : BaseLayer
|
||||
{
|
||||
// Attributes
|
||||
public uint X { get; set; } = 0;
|
||||
public uint Y { get; set; } = 0;
|
||||
public bool RepeatX { get; set; } = false;
|
||||
public bool RepeatY { get; set; } = false;
|
||||
|
||||
// At most one of
|
||||
public Image? Image { get; set; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue