mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-10 14:26:15 -05:00
8 lines
154 B
Go
8 lines
154 B
Go
package d2item
|
|
|
|
// Equipper is an interface for something that can equip items
|
|
type Equipper interface {
|
|
EquippedItems() []Item
|
|
CarriedItems() []Item
|
|
}
|