rts-sim-module/deprecated/test1/tinit/config.go
walker 0bba8f0934 删除donburi包引用
修改filter导入为从ecs项目导入
整理包结构,将弃用的包放入deprecated文件中
2023-10-09 11:17:25 +08:00

22 lines
371 B
Go

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