rts-sim-module/system/psd_system.go
2023-08-16 17:17:20 +08:00

16 lines
193 B
Go

package system
import "joylink.club/ecs"
type PsdSystem struct {
}
func NewPsdSystem() *PsdSystem {
return &PsdSystem{}
}
// world 执行
func (me *PsdSystem) Update(world ecs.World) {
}