SAMP.NET/sampdotnet/API/Enums/Alignment.cs
2022-08-27 18:18:04 +01:00

10 lines
137 B
C#

namespace SAMP.API
{
public enum Alignment : int
{
Left = 1,
Centered = 2,
Right = 3
};
};