19 lines
267 B
Go
19 lines
267 B
Go
|
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
|
||
|
}
|