inventory.go 101 B

12345678910
  1. package world
  2. type Inventory struct {
  3. items []*Item
  4. Equipment map[string] string
  5. }