(b *ecs.BasicEntity, a *AnimationComponent, r *RenderComponent)
| 225 | } |
| 226 | |
| 227 | func (t *TestAnimationSystem) Add(b *ecs.BasicEntity, a *AnimationComponent, r *RenderComponent) { |
| 228 | t.entities = append(t.entities, TestAnimationEntity{b, a, r}) |
| 229 | } |
| 230 | |
| 231 | func (t *TestAnimationSystem) Remove(b ecs.BasicEntity) {} |
| 232 |