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