14 lines
332 B
C#
14 lines
332 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|