aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/menuBackground.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/menu/menuBackground.hpp')
-rw-r--r--src/menu/menuBackground.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/menu/menuBackground.hpp b/src/menu/menuBackground.hpp
index 3e0aa85c..c398b381 100644
--- a/src/menu/menuBackground.hpp
+++ b/src/menu/menuBackground.hpp
@@ -55,6 +55,15 @@ namespace usdx
public:
virtual void draw(void);
};
+
+ class MenuBackgroundColor : MenuBackground
+ {
+ private:
+ RGB color;
+ public:
+ MenuBackgroundColor(RGB &color);
+ virtual void draw(void);
+ };
};
#endif