14 lines
258 B
Go
14 lines
258 B
Go
package component
|
||
|
||
import (
|
||
"joylink.club/ecs"
|
||
)
|
||
|
||
// AirCurtain 空气幕
|
||
// 具体异常-故障、报警、异常、通信中断
|
||
type AirCurtain struct {
|
||
Running bool //true-运行;false-停止
|
||
}
|
||
|
||
var AirCurtainType = ecs.NewComponentType[AirCurtain]()
|