aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/menuBackground.hpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2009-12-26 14:34:53 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:42 +0100
commite7f4fdd7f9585c2f5f1803bf3264c118251d86db (patch)
tree39ea5eaa10a4fae336730978d2da43bff84eb762 /src/menu/menuBackground.hpp
parent29dad9d5684ce458666ff008f4c5ef8f3539bc40 (diff)
downloadusdx-e7f4fdd7f9585c2f5f1803bf3264c118251d86db.tar.gz
usdx-e7f4fdd7f9585c2f5f1803bf3264c118251d86db.tar.xz
usdx-e7f4fdd7f9585c2f5f1803bf3264c118251d86db.zip
converted UMenuBackgroundColor
Diffstat (limited to '')
-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