| 1 | #include "AnimationComponent.h" |
| 2 | |
| 3 | AnimationComponent::AnimationComponent() |
| 4 | { |
| 5 | mMoveX = 0; |
| 6 | mMoveY = 0; |
| 7 | mMoveSpeed = 0; |
| 8 | mFadeRate = 0; |
| 9 | mOpacity = 0; |
| 10 | mAccumulator = 0; |
| 11 | } |
| 12 | |
| 13 | void AnimationComponent::move(int x, int y, int speed) |
| 14 | { |
nothing calls this directly
no outgoing calls
no test coverage detected