Changement dans le splachscreen

This commit is contained in:
Louis-Charles Gaumond
2023-10-23 16:57:19 -04:00
parent f4d4f1eca0
commit f8680a318a
4 changed files with 62 additions and 50 deletions

View File

@@ -31,7 +31,6 @@ public:
virtual void MouseMoveEvent(int x, int y) = 0;
virtual void MousePressEvent(const MOUSE_BUTTON &button, int x, int y) = 0;
virtual void MouseReleaseEvent(const MOUSE_BUTTON &button, int x, int y) = 0;
virtual void RenderSplashScreen();
bool Start(const std::string& title, int width, int height, bool fullscreen);
bool Stop();
@@ -63,7 +62,6 @@ private:
bool m_fullscreen;
std::string m_title;
float m_lastFrameTime;
Texture m_textureSplash;
};
#endif // OPENGLCONTEXT_H__