shuffle v01.config to split out state and meta

This commit is contained in:
Bel LaPointe
2023-03-27 10:54:02 -06:00
parent ecb719a97a
commit f647a03467
6 changed files with 130 additions and 116 deletions

View File

@@ -22,13 +22,22 @@ type (
}
configUser struct {
Player int
Message string
Alias string
Meta configUserMeta
State configUserState
}
configUserMeta struct {
LastTSMS int64
LastLag int64
}
configUserState struct {
Player int
Message string
Alias string
Vote string
}
configPlayer struct {
Transformation transformation
}