13 lines
181 B
Go
13 lines
181 B
Go
|
package system
|
||
|
|
||
|
import "joylink.club/ecs"
|
||
|
|
||
|
// 实现列车在link上运行的系统
|
||
|
type TrainSystem struct {
|
||
|
}
|
||
|
|
||
|
// world 执行
|
||
|
func (me *TrainSystem) Update(world ecs.World) {
|
||
|
|
||
|
}
|