From 1da356d8a64c45c99871aca156ee9fdd3e10ec15 Mon Sep 17 00:00:00 2001 From: Matthew Kosarek Date: Wed, 27 Sep 2023 08:03:04 -0400 Subject: Simplification of the Theme system with a more OO model --- themes/src/spring/SpringTheme.hpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'themes/src/spring/SpringTheme.hpp') diff --git a/themes/src/spring/SpringTheme.hpp b/themes/src/spring/SpringTheme.hpp index 0866921..64f9cb5 100644 --- a/themes/src/spring/SpringTheme.hpp +++ b/themes/src/spring/SpringTheme.hpp @@ -4,6 +4,7 @@ #include "../mathlib.h" #include "../types.h" #include "../Renderer3d.h" +#include "../theme.h" enum class SpringThemeState { @@ -15,7 +16,10 @@ enum class SpringThemeState { Idle }; -struct SpringTheme { +class SpringTheme : public Theme { +public: + SpringTheme(WebglContext*); + ~SpringTheme(); Renderer3d renderer; SpringThemeState state; f32 bunnySpeed = 5.f; @@ -38,4 +42,4 @@ struct SpringTheme { void unload(); }; -#endif \ No newline at end of file +#endif -- cgit v1.2.1