DotTiled/DotTiled/Model/Properties/ColorProperty.cs
2024-08-12 21:24:09 +02:00

14 lines
295 B
C#

namespace DotTiled;
public class ColorProperty : IProperty
{
public required string Name { get; set; }
public PropertyType Type => PropertyType.Color;
public required Color Value { get; set; }
public IProperty Clone() => new ColorProperty
{
Name = Name,
Value = Value
};
}