Files
eepp/src/ui/uihelper.cpp
2010-06-26 14:10:51 -03:00

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;
}
}}