structure tweaks

This commit is contained in:
2023-07-02 19:58:41 +02:00
parent 293c8f407e
commit d55c080243
4 changed files with 12 additions and 21 deletions

View File

@@ -8,19 +8,7 @@ type Player struct {
Name string
}
type GameField struct {
Level Level
LevelSection LevelSection
}
type Position struct {
X int
Y int
}
type Context struct {
Player Player
User User
CurrentGameField GameField
CurrentPosition Position
Player Player
User User
}