1
0
mirror of synced 2024-11-18 21:07:12 +01:00
ImHex/include/views/view.hpp
2020-11-11 14:41:44 +01:00

19 lines
307 B
C++

#pragma once
#include <hex.hpp>
#include "imgui.h"
namespace hex {
class View {
public:
View() { }
virtual ~View() { }
virtual void createView() = 0;
virtual void createMenu() { }
virtual bool handleShortcut(int key, int mods) { return false; }
};
}