2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 05:07:43 +00:00

CGuiTextSupport declarations

This commit is contained in:
Jack Andersen
2016-03-17 17:35:16 -10:00
parent a5e3440866
commit ad577754c4
3 changed files with 51 additions and 23 deletions

View File

@@ -2,32 +2,11 @@
#define __URDE_CGUITEXTPANE_HPP__
#include "CGuiPane.hpp"
#include "CGuiTextSupport.hpp"
namespace urde
{
enum class EJustification
{
};
enum class EVerticalJustification
{
};
class CGuiTextProperties
{
bool x0_a;
bool x1_b;
bool x2_c;
EJustification x4_justification;
EVerticalJustification x8_vertJustification;
public:
CGuiTextProperties(bool a, bool b, bool c, EJustification justification,
EVerticalJustification vertJustification)
: x0_a(a), x1_b(b), x2_c(c), x4_justification(justification),
x8_vertJustification(vertJustification) {}
};
class CGuiTextPane : public CGuiPane
{
public: