src/Graphics/GUI.hh
author Tero Marttila <terom@fixme.fi>
Wed, 21 Jan 2009 23:07:22 +0200
branchnew_graphics
changeset 412 721c60072091
parent 410 41fd46cffc52
permissions -rw-r--r--
new graphics code compiles... no, it doesn't work yet
#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