#pragma once #include #include #include #include namespace Game::AGame { GAME_ENTITY(Background) public: void onWindowResized(int newWidth, int newHeight) override; private: Object::Sound mSound; END_GAME_ENTITY() }