| 17 | #include <math.h> |
| 18 | |
| 19 | Camera::Camera() |
| 20 | { |
| 21 | pTarget = NULL; |
| 22 | scaleValue = 1.0f; |
| 23 | aspect = 0.0f; |
| 24 | toMove.x = 0; |
| 25 | toMove.y = 0; |
| 26 | isTargeting = false; |
| 27 | } |
| 28 | |
| 29 | Camera::~Camera() {} |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected