zone.go 87 B

12345678910
  1. package world
  2. type Zone struct {
  3. Entity
  4. RoomIDS []int
  5. rooms []Room
  6. }