2024-02-01 03:12:24 -05:00

13 lines
232 B
C++

#pragma once
#include <symbols/minecraft.h>
#include <mods/text-input-box/TextInputBox.h>
struct TextInputScreen {
Screen super;
std::vector<TextInputBox *> m_textInputs;
static void setup(Screen_vtable *vtable);
};