aboutsummaryrefslogtreecommitdiff
path: root/CustomLoadingScreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'CustomLoadingScreen.h')
-rw-r--r--CustomLoadingScreen.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/CustomLoadingScreen.h b/CustomLoadingScreen.h
index 66737b0..21f1eaa 100644
--- a/CustomLoadingScreen.h
+++ b/CustomLoadingScreen.h
@@ -5,16 +5,16 @@
class CustomLoadingScreen : public Feature
{
private:
- CustomLoadingScreen();
-
char* imagePath;
public:
+ CustomLoadingScreen() = delete;
+
//Supports .gif, .bmp, .jpg, .png
CustomLoadingScreen(char* imagePath);
//Callbacks
- void OnInitialise();
- void OnMenuMainWindow();
- void OnShutdown();
+ void OnInitialise() override;
+ void OnMenuMainWindow() override;
+ void OnShutdown() override;
}; \ No newline at end of file