1
0
forked from 0ad/0ad
0ad/source/gui/GUI.h
2005-04-23 23:20:50 +00:00

46 lines
787 B
C++
Executable File

/*
GUI Inclusion file
by Gustav Larsson
gee@pyro.nu
--Overview--
Include this file and it will include the whole GUI.
--More info--
Check TDD for GUI Engine Documentation
*/
#ifndef GUI_H
#define GUI_H
//--------------------------------------------------------
// Includes
//--------------------------------------------------------
#include <map>
#include <string>
#include <vector>
#include <stddef.h>
#include "Pyrogenesis.h"
#include "CStr.h"
#include "lib/types.h"
#include "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