mirror of https://github.com/AxioDL/metaforce.git
CGuiTextSupport: Make enum formatting consistent
This commit is contained in:
parent
b700da547e
commit
419d40051d
|
@ -19,7 +19,18 @@ class CSimplePool;
|
|||
class CTextExecuteBuffer;
|
||||
class CTextRenderBuffer;
|
||||
|
||||
enum class EJustification { Left = 0, Center, Right, Full, NLeft, NCenter, NRight, LeftMono, CenterMono, RightMono };
|
||||
enum class EJustification {
|
||||
Left = 0,
|
||||
Center,
|
||||
Right,
|
||||
Full,
|
||||
NLeft,
|
||||
NCenter,
|
||||
NRight,
|
||||
LeftMono,
|
||||
CenterMono,
|
||||
RightMono,
|
||||
};
|
||||
|
||||
enum class EVerticalJustification {
|
||||
Top = 0,
|
||||
|
@ -31,10 +42,13 @@ enum class EVerticalJustification {
|
|||
NBottom,
|
||||
TopMono,
|
||||
CenterMono,
|
||||
RightMono
|
||||
RightMono,
|
||||
};
|
||||
|
||||
enum class ETextDirection { Horizontal, Vertical };
|
||||
enum class ETextDirection {
|
||||
Horizontal,
|
||||
Vertical,
|
||||
};
|
||||
|
||||
class CGuiTextProperties {
|
||||
friend class CGuiTextSupport;
|
||||
|
|
Loading…
Reference in New Issue