Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/palette.cc')
-rw-r--r--src/ui/palette.cc19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ui/palette.cc b/src/ui/palette.cc
index 6492dc3..9049b72 100644
--- a/src/ui/palette.cc
+++ b/src/ui/palette.cc
@@ -29,6 +29,25 @@ Palette::Palette() :
}
+Palette::Palette(const Palette & other ) :
+ palette_foreground(other.foreground()),
+ palette_background(other.background()),
+ palette_border(other.border()),
+ palette_text(other.text()),
+ palette_highlight(other.highlight()),
+ palette_disabled(other.disabled()),
+ palette_pointer(other.pointer()),
+ palette_active(other.active()),
+ palette_debug(other.debug()),
+ palette_mission(other.mission()),
+ palette_bold(other.bold()),
+ palette_fancy(other.fancy()),
+ palette_warning(other.warning()),
+ palette_error(other.error())
+{
+
+}
+
Palette::~Palette()
{
}