world 状态获取

This commit is contained in:
xzb 2023-08-15 16:48:55 +08:00
parent 102081251c
commit 8ffea356da
1 changed files with 4 additions and 1 deletions

View File

@ -46,6 +46,7 @@ type World interface {
AddSystem(sys ...ISystem) AddSystem(sys ...ISystem)
Close() Close()
Tick() int Tick() int
Running() bool
} }
type world struct { type world struct {
@ -73,7 +74,9 @@ func NewWorld(tick int) World {
quit: make(chan struct{}), quit: make(chan struct{}),
} }
} }
func (w *world) Running() bool {
return w.state == Running
}
func (w *world) Tick() int { func (w *world) Tick() int {
return w.tick return w.tick
} }