12 lines
250 B
Go
12 lines
250 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]()
|
||
|
)
|