OpenDiablo2/d2core/d2hero/character_equipment.go

14 lines
370 B
Go

package d2hero
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?
}