daniel/structs.go

19 lines
267 B
Go
Raw Normal View History

2018-02-05 19:52:50 -07:00
package main
//Area places to explore
type Area struct {
description string
weather string
}
//Event current event state
type Event struct {
battle bool
}
//Character creates format for any entity
type Character struct {
name string
location string
}