mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
14 lines
362 B
Go
14 lines
362 B
Go
package d2core
|
|
|
|
type CharacterEquipment struct {
|
|
Head InventoryItemArmor // Head
|
|
Torso InventoryItemArmor // TR
|
|
Legs InventoryItemArmor // Legs
|
|
RightArm InventoryItemArmor // RA
|
|
LeftArm InventoryItemArmor // LA
|
|
LeftHand InventoryItemWeapon // LH
|
|
RightHand InventoryItemWeapon // RH
|
|
Shield InventoryItemArmor // SH
|
|
// S1-S8?
|
|
}
|