123456789101112131415161718 |
- class ItemSlot {
- };
- ItemSlot.Head = "head";
- ItemSlot.Face = "face";
- ItemSlot.Neck = "neck";
- ItemSlot.Shoulders = "shoulders";
- ItemSlot.Back = "Back";
- ItemSlot.Chest = "chest";
- ItemSlot.MainHand = "mainhand";
- ItemSlot.OffHand = "offhand";
- ItemSlot.Ring1 = "ring1";
- ItemSlot.Ring2 = "ring2";
- ItemSlot.Waist = "waist";
- ItemSlot.Legs = "legs";
- ItemSlot.Feet = "feet";
- module.exports = ItemSlot;
|