mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-16 00:17:11 +00:00
28
include/Kyoto/Text/CSaveableState.hpp
Normal file
28
include/Kyoto/Text/CSaveableState.hpp
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef _CSAVEABLESTATE
|
||||
#define _CSAVEABLESTATE
|
||||
|
||||
#include "Kyoto/Text/CDrawStringOptions.hpp"
|
||||
#include "Kyoto/Text/CRasterFont.hpp"
|
||||
#include "Kyoto/Text/CTextColor.hpp"
|
||||
|
||||
#include "rstl/optional_object.hpp"
|
||||
#include "rstl/vector.hpp"
|
||||
|
||||
class CSaveableState {
|
||||
public:
|
||||
CSaveableState();
|
||||
|
||||
bool IsFinishedLoading();
|
||||
private:
|
||||
CDrawStringOptions x0_drawStringOptions;
|
||||
rstl::optional_object< TToken< CRasterFont > > x48_font;
|
||||
rstl::vector< CTextColor > x54_colors;
|
||||
rstl::vector<bool> x64_colorOverrides;
|
||||
float x74_lineSpacing;
|
||||
int x78_extraLineSpacing;
|
||||
bool x7c_enableWordWrap;
|
||||
EJustification x80_just;
|
||||
EVerticalJustification x84_vjust;
|
||||
};
|
||||
|
||||
#endif // _CSAVEABLESTATE
|
||||
Reference in New Issue
Block a user