1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-03 14:30:42 +00:00
OpenDiablo2/d2common/d2enum/scene_state.go

12 lines
207 B
Go

package d2enum
// SceneState enumerates the different states a scene can be in
type SceneState int
// Scene states
const (
SceneStateUninitialized SceneState = iota
SceneStateBooting
SceneStateBooted
)