16 lines
193 B
Go
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) {
|
||
|
|
||
|
}
|