12 lines
156 B
Go
12 lines
156 B
Go
|
package component
|
||
|
|
||
|
import "joylink.club/ecs"
|
||
|
|
||
|
var (
|
||
|
TrackCircuitType = ecs.NewComponentType[TrackCircuit]()
|
||
|
)
|
||
|
|
||
|
type TrackCircuit struct {
|
||
|
GJ *ecs.Entry
|
||
|
}
|