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

12 lines
151 B
C#

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