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

16 lines
241 B
Go

package component
import (
"joylink.club/ecs"
)
// NetworkSwitch 交换机
// 具体异常-通信中断、异常
type NetworkSwitch struct {
Normal bool //true-正常
}
var (
NetworkSwitchType = ecs.NewComponentType[NetworkSwitch]()
)