rts-sim-module/component/iscs_bas_air_pavilion.go

13 lines
219 B
Go
Raw Normal View History

2023-12-25 17:31:35 +08:00
package component
import "joylink.club/ecs"
// AirPavilion 风亭(排风亭、送风亭)
type AirPavilion struct {
Normal bool //true-正常
}
var (
2024-01-09 09:39:03 +08:00
AirPavilionType = ecs.NewComponentType[AirPavilion]() //风亭
2023-12-25 17:31:35 +08:00
)