Move source to src/

This commit is contained in:
Daniel Cronqvist 2024-08-16 21:44:27 +02:00
parent 580e630148
commit 0a11cdd791
131 changed files with 0 additions and 0 deletions

View 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; }
}