Gave access to close atom to derived class

This commit is contained in:
Robert 2020-06-26 12:21:03 +02:00
parent 8313554444
commit f86246eca5

View file

@ -44,6 +44,7 @@ namespace sf
SDL_Window* m_pWindow;
SDL_Renderer* m_pRenderer;
SDL_Event m_oEvent;
std::atomic_bool m_atomWindowOpen;
private:
void MessageLoop();
@ -58,7 +59,7 @@ namespace sf
IScreen* m_pCurrentScreen;
std::thread m_oMsgLoopThread;
std::atomic_bool m_atomWindowOpen;
std::function<bool( SDL_Event& )> m_oEventFunction;
std::function<bool( double )> m_oUpdateFunction;