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

10 lines
130 B
C#

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