Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
ImguiInput.hpp
1#pragma once
2
3#include "Common/Event/MouseButtonCode.hpp"
4
5struct ImGuiIO;
6
7namespace Grindstone {
8 class EngineCore;
9
10 namespace Events {
11 struct BaseEvent;
12 }
13
14 namespace Editor {
15 namespace ImguiEditor {
16 class ImguiInput {
17 public:
18 ImguiInput(ImGuiIO& io, EngineCore* engineCore);
19 bool OnMouseMove(Events::BaseEvent* ev);
20 bool OnMousePressed(Events::BaseEvent* ev);
21 bool OnMouseScrolled(Events::BaseEvent* ev);
22 bool OnKeyPressed(Events::BaseEvent* ev);
23 bool OnCharacterTyped(Events::BaseEvent* ev);
24 private:
25 ImGuiIO& io;
26 };
27 }
28 }
29}
Definition EngineCore.hpp:57
Definition BaseEvent.hpp:7