mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2026-05-18 06:51:02 +00:00
16 lines
314 B
C++
16 lines
314 B
C++
#ifndef RECOMPUI_ELEMENTS_H
|
|
#define RECOMPUI_ELEMENTS_H
|
|
|
|
#include "recomp_ui.h"
|
|
#include "RmlUi/Core/Element.h"
|
|
|
|
#include "ui_mod_menu.h"
|
|
#include "ui_config_sub_menu.h"
|
|
|
|
namespace recompui {
|
|
void register_custom_elements();
|
|
|
|
Rml::ElementInstancer* get_custom_element_instancer(std::string tag);
|
|
}
|
|
|
|
#endif
|