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

13 lines
323 B
Go
Raw Normal View History

2024-01-18 14:11:47 +08:00
package appcomponent
import (
"joylink.club/bj-rtsts-server/dto/request_proto"
"joylink.club/ecs"
)
var (
2024-01-22 15:56:40 +08:00
PointsParamType = ecs.NewComponentType[request_proto.PointsParam]()
SignalParamType = ecs.NewComponentType[request_proto.SignalParam]()
SectionParamType = ecs.NewComponentType[request_proto.SectionParam]()
2024-01-18 14:11:47 +08:00
)