()
| 252 | } |
| 253 | |
| 254 | func (t *TestAnimationSystem) GetCurrentFrameDrawables() []int { |
| 255 | ret := []int{} |
| 256 | for _, e := range t.entities { |
| 257 | d := e.Drawable.(*TestDrawable) |
| 258 | ret = append(ret, d.ID) |
| 259 | } |
| 260 | return ret |
| 261 | } |
| 262 | |
| 263 | type TestAnimation struct { |
| 264 | ecs.BasicEntity |
no outgoing calls
no test coverage detected