File ImguiMButton.h
File List > menu > ImguiMButton.h
Go to the documentation of this file
#pragma once
#include "ImguiMenuItem.h"
namespace UI
{
class ImguiMButton : public ImguiMenuItem
{
public:
ImguiMButton();
~ImguiMButton() {};
ImguiMButton(std::string _name, std::string _shortcut);
void RenderMenuItem(const Context& ctx) override;
};
}