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