BattleBit-Community-Server-API/BattleBitAPI/Common/Enums/PlayerBody.cs
2023-08-10 13:42:51 +03:00

15 lines
232 B
C#

namespace BattleBitAPI.Common
{
public enum PlayerBody : byte
{
None = 0,
Head = 2,
Neck = 3,
Shoulder = 4,
Arm = 5,
Leg = 6,
Foot = 7,
Chest = 10,
}
}