2023-08-23 09:54:41 +08:00
|
|
|
package system
|
|
|
|
|
|
|
|
import "joylink.club/ecs"
|
|
|
|
|
2023-09-15 13:48:48 +08:00
|
|
|
// TrainSystem 实现列车在link上运行的系统
|
2023-08-23 09:54:41 +08:00
|
|
|
type TrainSystem struct {
|
|
|
|
}
|
|
|
|
|
2023-09-15 13:48:48 +08:00
|
|
|
// Update world 执行
|
2023-08-23 09:54:41 +08:00
|
|
|
func (me *TrainSystem) Update(world ecs.World) {
|
|
|
|
|
|
|
|
}
|