src/Graphics/GUI.hh
author Tero Marttila <terom@fixme.fi>
Wed, 21 Jan 2009 01:57:24 +0200
branchnew_graphics
changeset 410 41fd46cffc52
child 412 721c60072091
permissions -rw-r--r--
start working out the Graphics/* code, this is a long way from compiling, let alone working
#ifndef GRAPHICS_GUI_HH
#define GRAPHICS_GUI_HH

#include "GUIStyle.hh"

#include <ClanLib/gui.h>


namespace Graphics
{

/**
 * Our CL_GUIManager, for when we use ClanLib's GUI stuff
 */    
class GUI : public CL_GUIManager {
public:
    /**
     * Construct default manager
     */
    GUI (CL_ResourceManager *resources) :
        CL_GUIManager(new GUIStyle(resources))
    {

    }

        
};

}

#endif