]> icculus.org git repositories - mikachu/openbox.git/blob - otk/otk.cc
Add the "obsetroot" tool. Use it to set the root background.
[mikachu/openbox.git] / otk / otk.cc
1 #include "display.hh"
2 #include "timer.hh"
3 #include "renderstyle.hh"
4 #include "property.hh"
5
6 namespace otk {
7
8 void initialize()
9 {
10   new Display();
11   Timer::initialize();
12   RenderColor::initialize();
13   RenderStyle::initialize();
14   Property::initialize();
15 }
16
17 void destroy()
18 {
19   RenderStyle::destroy();
20   RenderColor::destroy();
21   Timer::destroy();
22   delete display;
23 }
24
25 }