mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2025-04-09 18:45:06 +00:00
16 lines
273 B
C++
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
|