2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 07:11:20 +00:00
metaforce/Runtime/GuiSys/CDrawStringOptions.hpp
2016-03-10 14:23:16 -10:00

24 lines
338 B
C++

#ifndef __URDE_CDRAWSTRINGOPTIONS_HPP__
#define __URDE_CDRAWSTRINGOPTIONS_HPP__
#include <vector>
#include "RetroTypes.hpp"
namespace urde
{
class CDrawStringOptions
{
u32 x0_ = 0;
std::vector<u32> x4_vec;
public:
CDrawStringOptions()
{
x4_vec.resize(16);
}
};
}
#endif // __URDE_CDRAWSTRINGOPTIONS_HPP__