Files
gorpg/domain/context.go
2023-06-27 20:17:48 +02:00

25 lines
293 B
Go

package domain
type User struct {
name string
}
type Player struct {
name string
}
type GameField struct {
Level Level
LevelSection LevelSection
}
type Context struct {
Player Player
User User
GameField GameField
}
func CreateContext() Context {
return Context{}
}