rts-sim-module/component/iscs_bas_air_conditioner.go
2024-01-09 09:39:03 +08:00

13 lines
234 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package component
import "joylink.club/ecs"
// AirConditioning 空调
type AirConditioning struct {
Running bool //true-运行正常false-停止
}
var (
AirConditioningType = ecs.NewComponentType[AirConditioning]() //空调
)