| 8 | #include <iomanip> |
| 9 | |
| 10 | Window::Window() : mNormalizeNextUpdate(false), mFrameTimeElapsed(0), mFrameCountElapsed(0), mAverageDeltaTime(10), |
| 11 | mZoomFactor(1.0f), mCenterPoint(0, 0), mMatrix(Eigen::Affine3f::Identity()), mFadePercent(0.0f) |
| 12 | { |
| 13 | mInputManager = new InputManager(this); |
| 14 | setCenterPoint(Eigen::Vector2f(Renderer::getScreenWidth() / 2, Renderer::getScreenHeight() / 2)); |
| 15 | } |
| 16 | |
| 17 | Window::~Window() |
| 18 | { |
nothing calls this directly
no test coverage detected