rts-sim-module/component/equipment.go
walker 9401b15142 组件调整
实体加载调整
继电器、断相保护器、道岔转辙机、道岔、道岔电路等系统调整
继电器、道岔对外接口调整
2024-01-12 18:20:21 +08:00

12 lines
212 B
Go

package component
import (
"joylink.club/ecs"
"joylink.club/rtsssimulation/component/component_data"
)
var (
// 电机状态组件类型
MotorStateType = ecs.NewComponentType[component_data.MotorState]()
)