mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
316 B
C++
19 lines
316 B
C++
3 years ago
|
#ifndef OPENMW_LUAUI_ALIGNMENT
|
||
|
#define OPENMW_LUAUI_ALIGNMENT
|
||
|
|
||
|
#include <MyGUI_Align.h>
|
||
|
|
||
|
namespace LuaUi
|
||
|
{
|
||
|
enum class Alignment
|
||
|
{
|
||
|
Start = 0,
|
||
|
Center = 1,
|
||
|
End = 2
|
||
|
};
|
||
|
|
||
|
MyGUI::Align alignmentToMyGui(Alignment horizontal, Alignment vertical);
|
||
|
}
|
||
|
|
||
|
#endif // !OPENMW_LUAUI_PROPERTIES
|