summaryrefslogtreecommitdiff
path: root/src/imgui_context.hpp
blob: a625865a698dd1ec6219abe3954f001d3e5ce4e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef IMGUI_CONTEXT_HPP
#define IMGUI_CONTEXT_HPP

namespace bookmouse {

class ImguiContext {
  public:
    ImguiContext();
    ~ImguiContext();

  private:
};

} // namespace bookmouse

#endif