mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-07-07 06:07:51 +03:00
14 lines
287 B
C#
14 lines
287 B
C#
namespace DotTiled;
|
|
|
|
public class IntProperty : IProperty
|
|
{
|
|
public required string Name { get; set; }
|
|
public PropertyType Type => PropertyType.Int;
|
|
public required int Value { get; set; }
|
|
|
|
public IProperty Clone() => new IntProperty
|
|
{
|
|
Name = Name,
|
|
Value = Value
|
|
};
|
|
}
|