mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2025-12-25 17:32:31 +00:00
25 lines
736 B
C++
25 lines
736 B
C++
#ifndef RECOMPUI_ELEMENTS_H
|
|
#define RECOMPUI_ELEMENTS_H
|
|
|
|
#include "recomp_ui.h"
|
|
#include "RmlUi/Core/Element.h"
|
|
|
|
#include "elements/ElementConfigOption.h"
|
|
#include "elements/ElementConfigGroup.h"
|
|
#include "elements/ElementOptionTypeButton.h"
|
|
#include "elements/ElementOptionTypeCheckbox.h"
|
|
#include "elements/ElementOptionTypeColor.h"
|
|
#include "elements/ElementOptionTypeDropdown.h"
|
|
#include "elements/ElementOptionTypeRadioTabs.h"
|
|
#include "elements/ElementOptionTypeRange.h"
|
|
#include "elements/ElementOptionTypeTextField.h"
|
|
#include "elements/ElementDescription.h"
|
|
#include "ui_mod_menu.h"
|
|
|
|
namespace recompui {
|
|
void register_custom_elements();
|
|
|
|
Rml::ElementInstancer* get_custom_element_instancer(std::string tag);
|
|
}
|
|
|
|
#endif
|