jl-ecs/examples/rtss-cg/state/section_state.go
2023-08-11 13:46:57 +08:00

8 lines
110 B
Go

package state
//物理区段状态
type PhysicalSectionState struct {
//是否有车占用
Occupied bool
}