rts-sim-module/deprecated/test1/tinit/config.go

22 lines
371 B
Go
Raw Normal View History

2023-09-26 10:49:22 +08:00
package tinit
import (
"time"
"joylink.club/rtsssimulation/deprecated/system"
2023-09-26 10:49:22 +08:00
"joylink.club/ecs"
)
// WorldConfig 仿真world配置
type WorldConfig struct {
//模型管理器,接收模型仓库管理器实例的指针
ModelManager system.IModelManager
//world 系统
Systems []ecs.ISystem
//world tick
Tick int
//world 起始时间
InitTime time.Time
}