mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-31 18:46:29 +03:00
14 lines
200 B
C++
14 lines
200 B
C++
#include "uihelper.hpp"
|
|
|
|
namespace EE { namespace UI {
|
|
|
|
Uint32 HAlignGet( Uint32 Flags ) {
|
|
return Flags & UI_HALIGN_MASK;
|
|
}
|
|
|
|
Uint32 VAlignGet( Uint32 Flags ) {
|
|
return Flags & UI_VALIGN_MASK;
|
|
}
|
|
|
|
}}
|