summaryrefslogtreecommitdiff
path: root/src/imgui_context.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/imgui_context.hpp')
-rw-r--r--src/imgui_context.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/imgui_context.hpp b/src/imgui_context.hpp
new file mode 100644
index 0000000..a625865
--- /dev/null
+++ b/src/imgui_context.hpp
@@ -0,0 +1,16 @@
+#ifndef IMGUI_CONTEXT_HPP
+#define IMGUI_CONTEXT_HPP
+
+namespace bookmouse {
+
+class ImguiContext {
+ public:
+ ImguiContext();
+ ~ImguiContext();
+
+ private:
+};
+
+} // namespace bookmouse
+
+#endif