New Super Mario Bros. U Headers
Loading...
Searching...
No Matches
TagProcessor.h
Go to the documentation of this file.
1#pragma once
2
3#include <basis/seadTypes.h>
4
5#include <nw/font/font_TagProcessorBase.h>
6#include <nw/lyt/lyt_TextBox.h>
7
8class TagProcessor : public nw::lyt::TextBox::TagProcessor // vtbl Address: 0x100E4580
9{
10public:
12 : mFontSize(1.0f)
13 {
14 }
15
16 // Address: 0x0267C0C4
17 Operation Process(u16 code, ContextType* pContext) override;
18 // Address: 0x0267C3FC
19 Operation CalcRect(nw::ut::Rect* pRect, u16 code, ContextType* pContext) override;
20
21protected:
23};
24static_assert(sizeof(TagProcessor) == 0x8);
Definition TagProcessor.h:9
f32 mFontSize
Definition TagProcessor.h:22
Operation CalcRect(nw::ut::Rect *pRect, u16 code, ContextType *pContext) override
Operation Process(u16 code, ContextType *pContext) override
TagProcessor()
Definition TagProcessor.h:11