add level skeleton

This commit is contained in:
2023-07-04 22:32:13 +02:00
parent 88cf7620be
commit 93b2725c8a
8 changed files with 130 additions and 12 deletions

View File

@@ -4,11 +4,12 @@ type User struct {
Name string
}
type Player struct {
type PlayerState struct {
Name string
}
type Context struct {
Player Player
User User
PlayerState PlayerState
User User
Level int
}