yavsc/YavscLib/HairCut/HairLength.cs

12 lines
127 B
C#

namespace YavscLib.HairCut
{
public enum HairLength : int
{
HalfLong,
Short = 1,
Long
}
}