ArabDesert/Assets/RTLTMPro/Scripts/Runtime/TashkeelLocation.cs

14 lines
332 B
C#
Raw Normal View History

2024-05-25 09:10:35 +03:00
namespace RTLTMPro
{
public struct TashkeelLocation
{
public char Tashkeel { get; set; }
public int Position { get; set; }
public TashkeelLocation(TashkeelCharacters tashkeel, int position) : this()
{
Tashkeel = (char) tashkeel;
Position = position;
}
}
}