Zelda64Recomp/src/ui/elements/ElementModMenu.h
2024-09-30 07:49:02 -05:00

16 lines
273 B
C++

#ifndef RECOMPUI_ELEMENT_MOD_MENU_H
#define RECOMPUI_ELEMENT_MOD_MENU_H
#include "common.h"
namespace recompui {
class ElementModMenu : public Rml::Element {
public:
ElementModMenu(const Rml::String& tag);
virtual ~ElementModMenu();
};
} // namespace recompui
#endif