rts-sim-module/component/iscs_bas_air_curtain.go
2023-12-19 11:11:27 +08:00

14 lines
258 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"
)
// AirCurtain 空气幕
// 具体异常-故障、报警、异常、通信中断
type AirCurtain struct {
Running bool //true-运行false-停止
}
var AirCurtainType = ecs.NewComponentType[AirCurtain]()