rts-sim-module/component/iscs_bas_air_conditioner.go

13 lines
234 B
Go
Raw Normal View History

2023-12-25 17:31:35 +08:00
package component
import "joylink.club/ecs"
// AirConditioning 空调
type AirConditioning struct {
Running bool //true-运行正常false-停止
}
var (
AirConditioningType = ecs.NewComponentType[AirConditioning]() //空调
)