mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-07-07 06:07:51 +03:00
14 lines
295 B
C#
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
|
|
};
|
|
}
|