rts-sim-module/system/button_system.go
2023-09-26 11:29:50 +08:00

14 lines
334 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 system
import "joylink.club/ecs"
// ButtonState 广义按钮开关状态,开关有三个接点,分别为公共接点、常开点和常闭点
type ButtonState struct {
//true-公共接点接通常开点false-公共接点接通常闭点
Ckd bool
}
var (
ButtonStateComponent = ecs.NewComponentType[ButtonState]()
)