/*
GUI Inclusion file

--Overview--

    Include this file and it will include the whole GUI.

--More info--

    Check TDD for GUI Engine Documentation

*/


#ifndef INCLUDED_GUI
#define INCLUDED_GUI

//--------------------------------------------------------
//  Includes
//--------------------------------------------------------
#include <map>
#include <string>
#include <vector>
#include <stddef.h>

#include "ps/Pyrogenesis.h"
#include "ps/CStr.h"
#include "lib/ogl.h"

#include "GUIbase.h"
#include "GUIutil.h"
#include "GUItext.h"
#include "CGUIList.h"
#include "IGUIObject.h"
#include "IGUIButtonBehavior.h"
#include "IGUIScrollBarOwner.h"
#include "IGUITextOwner.h"
#include "IGUIScrollBar.h"
#include "CGUIScrollBarVertical.h"
#include "CGUI.h"

#endif