src/Graphics/GUI.hh
branchnew_graphics
changeset 410 41fd46cffc52
child 412 721c60072091
equal deleted inserted replaced
409:1a03ff151abc 410:41fd46cffc52
       
     1 #ifndef GRAPHICS_GUI_HH
       
     2 #define GRAPHICS_GUI_HH
       
     3 
       
     4 #include "GUIStyle.hh"
       
     5 
       
     6 #include <ClanLib/gui.h>
       
     7 
       
     8 
       
     9 namespace Graphics
       
    10 {
       
    11 
       
    12 /**
       
    13  * Our CL_GUIManager, for when we use ClanLib's GUI stuff
       
    14  */    
       
    15 class GUI : public CL_GUIManager {
       
    16 public:
       
    17     /**
       
    18      * Construct default manager
       
    19      */
       
    20     GUI (CL_ResourceManager *resources) :
       
    21         CL_GUIManager(new GUIStyle(resources))
       
    22     {
       
    23 
       
    24     }
       
    25 
       
    26         
       
    27 };
       
    28 
       
    29 }
       
    30 
       
    31 #endif