0ad/source/gui/GUI.h

46 lines
797 B
C
Raw Normal View History

/*
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
*/
2003-11-22 07:07:22 -08:00
#ifndef GUI_H
#define GUI_H
//--------------------------------------------------------
// Includes
//--------------------------------------------------------
#include <map>
2003-11-04 14:28:54 -08:00
#include <string>
2003-11-24 09:13:37 -08:00
#include <vector>
#include <stddef.h>
#include "ps/Pyrogenesis.h"
#include "ps/CStr.h"
#include "lib/types.h"
#include "lib/ogl.h"
#include "GUIbase.h"
#include "GUIutil.h"
2004-05-28 21:06:50 -07:00
#include "GUItext.h"
#include "CGUIList.h"
2003-11-23 18:18:41 -08:00
#include "IGUIObject.h"
#include "IGUIButtonBehavior.h"
#include "IGUIScrollBarOwner.h"
2004-05-28 21:06:50 -07:00
#include "IGUITextOwner.h"
#include "IGUIScrollBar.h"
#include "CGUIScrollBarVertical.h"
#include "CGUI.h"
2003-11-24 09:13:37 -08:00
#endif