12 lines
192 B
Go
12 lines
192 B
Go
package component
|
|
|
|
import "joylink.club/ecs"
|
|
|
|
var (
|
|
AxleCountingSectionStateType = ecs.NewComponentType[AxleCountingSectionState]()
|
|
)
|
|
|
|
type AxleCountingSectionState struct {
|
|
Occupied bool
|
|
}
|