2016-03-11 00:23:16 +00:00
|
|
|
#ifndef __URDE_CSAVEABLESTATE_HPP__
|
|
|
|
#define __URDE_CSAVEABLESTATE_HPP__
|
|
|
|
|
|
|
|
#include "CDrawStringOptions.hpp"
|
|
|
|
#include "CToken.hpp"
|
2016-03-12 04:58:56 +00:00
|
|
|
#include "zeus/CColor.hpp"
|
2016-03-11 00:23:16 +00:00
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
class CRasterFont;
|
|
|
|
|
|
|
|
class CSaveableState
|
|
|
|
{
|
|
|
|
CDrawStringOptions x0_drawStrOpts;
|
|
|
|
TToken<CRasterFont> x14_token;
|
2016-03-12 04:58:56 +00:00
|
|
|
std::vector<zeus::CColor> x20_;
|
2016-03-11 00:23:16 +00:00
|
|
|
std::vector<u8> x30_;
|
|
|
|
float x40_ = 1.f;
|
|
|
|
u32 x44_ = 0;
|
|
|
|
bool x48_ = false;
|
|
|
|
u32 x4c_ = 0;
|
|
|
|
u32 x50_ = 0;
|
|
|
|
|
|
|
|
CSaveableState()
|
|
|
|
{
|
2016-03-12 04:58:56 +00:00
|
|
|
x20_.resize(3, zeus::CColor::skBlack);
|
2016-03-11 00:23:16 +00:00
|
|
|
x30_.resize(16);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CSAVEABLESTATE_HPP__
|