Experimental rooms file

This commit is contained in:
mollusk 2017-10-26 02:10:18 -07:00
parent 182041e89c
commit 0fb88c7144

15
rooms.go Normal file
View File

@ -0,0 +1,15 @@
package main
type Room struct {
reward bool
doors string
enemies bool
}
var (
introRoom = Room{
reward: true,
doors: "1",
enemies: false,
}
)