/*! * @file glgui_defs.h * Definitions for the GLGui. */ #ifndef _GLGUI_DEFS_H #define _GLGUI_DEFS_H /// TODO MOVE TO ORXGUI_TYPES namespace OrxGui { //! An enumeration for the Orientation of an Element. typedef enum { Horizontal, //!< Horizontal Orientation. Vertical //!< Vertical Orientation. } Orientation; }; #endif /* _GLGUI_DEFS_H */