Fix: various bug fix
This commit is contained in:
@@ -2,4 +2,19 @@ package types
|
||||
|
||||
type ShutdownFunc func()
|
||||
|
||||
type RunFunc func() error
|
||||
|
||||
type StageType int
|
||||
|
||||
const (
|
||||
StageLanding StageType = iota
|
||||
StageLobby
|
||||
StageGaming
|
||||
)
|
||||
|
||||
type Program struct {
|
||||
Run RunFunc
|
||||
Stage StageType
|
||||
}
|
||||
|
||||
type UsernameType = string
|
||||
|
||||
Reference in New Issue
Block a user