mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-06 00:26:40 -05:00
* Prevent input fighting between terminal and other input listeners. * Moving files around, removing exports * Add missing line
14 lines
375 B
Go
14 lines
375 B
Go
package d2inventory
|
|
|
|
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?
|
|
}
|