mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
11 lines
357 B
C++
11 lines
357 B
C++
#include "Game/Util/LayoutUtil.hpp"
|
|
|
|
namespace MR {
|
|
void setTextBoxNumberRecursive(LayoutActor *pActor, const char *pText, s32 a3) {
|
|
MR::setTextBoxFormatRecursive(pActor, pText, L"%d", a3);
|
|
}
|
|
|
|
void clearTextBoxMessageRecursive(LayoutActor *pActor, const char *pText) {
|
|
MR::setTextBoxMessageRecursive(pActor, pText, L"");
|
|
}
|
|
}; |