rts-sim-testing-service/ts/simulation/app_component/component.go

14 lines
390 B
Go

package appcomponent
import (
"joylink.club/bj-rtsts-server/dto/request_proto"
"joylink.club/ecs"
)
var (
PointsParamType = ecs.NewComponentType[request_proto.PointsParam]()
SignalParamType = ecs.NewComponentType[request_proto.SignalParam]()
SectionParamType = ecs.NewComponentType[request_proto.SectionParam]()
PsdParamType = ecs.NewComponentType[request_proto.PsdParam]()
)