remove Refrens from GUI enum

This commit is contained in:
2018-08-30 11:50:19 -04:00
parent 2c41974460
commit 05ffe20bb4
14 changed files with 48 additions and 48 deletions
@@ -43,7 +43,7 @@ namespace GUIEngine {
const bool Initialize( const cString& filename, const cString& dir = "", const unsigned long int size = 16 );
void Event( const MathEngine::iVector2& location, const eGUIEventType& type );
void Event( const MathEngine::iVector2& location, const eGUIEventType type );
const MathEngine::iVector2 DisplayArea() const;
void AddObject( GUIEngine::cWindow* obj );
@@ -64,7 +64,7 @@ namespace GUIEngine {
void setPadding( const GUIHelpers::Padding& padding );
void setPadding( const unsigned int top = 5, const unsigned int right = 5, const unsigned int bottom = 5, const unsigned int left = 5 );
void setAlign( const GUIHelpers::eAlign& align = GUIHelpers::eAlign::CENTER );
void setAlign( const GUIHelpers::eAlign align = GUIHelpers::eAlign::CENTER );
/// Gets
const unsigned long int getDebugLevel() const;
@@ -77,7 +77,7 @@ namespace GUIEngine {
const GUIHelpers::Padding& getPadding() const;
void getPadding( unsigned int& top, unsigned int& right, unsigned int& bottom, unsigned int& left ) const;
const GUIHelpers::eAlign& getAlign() const;
const GUIHelpers::eAlign getAlign() const;
const bool IsInit() const;