BattleBit-Community-Server-API/BattleBitAPI/Common/Enums/LoadoutIndex.cs
2023-08-14 12:43:58 +03:00

12 lines
229 B
C#

namespace BattleBitAPI.Common
{
public enum LoadoutIndex : byte
{
Primary = 0,
Secondary = 1,
FirstAid = 2,
LightGadget = 3,
HeavyGadget = 4,
Throwable = 5,
}
}