mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 09:47:43 +00:00
More GuiSys stubs
This commit is contained in:
23
Runtime/GuiSys/CDrawStringOptions.hpp
Normal file
23
Runtime/GuiSys/CDrawStringOptions.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#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__
|
||||
Reference in New Issue
Block a user