Files
inp2025/types/types.go
2025-10-16 07:12:01 +08:00

21 lines
239 B
Go

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