rts-sim-module/component/track_circuit.go

12 lines
156 B
Go
Raw Normal View History

2024-05-13 13:17:16 +08:00
package component
import "joylink.club/ecs"
var (
TrackCircuitType = ecs.NewComponentType[TrackCircuit]()
)
type TrackCircuit struct {
GJ *ecs.Entry
}