initial commit

This commit is contained in:
2023-06-27 20:17:48 +02:00
commit f2b64d4d05
11 changed files with 232 additions and 0 deletions

24
domain/context.go Normal file
View File

@@ -0,0 +1,24 @@
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{}
}