mirror of
https://github.com/MrOkiDoki/BattleBit-Community-Server-API.git
synced 2025-01-26 11:13:10 -03:00
15 lines
232 B
C#
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,
|
|
}
|
|
|
|
}
|