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
5
struct
ImGuiIO;
6
7
namespace
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
}
Grindstone::Editor::ImguiEditor::ImguiInput
Definition
ImguiInput.hpp:16
Grindstone::EngineCore
Definition
EngineCore.hpp:57
Grindstone::Events::BaseEvent
Definition
BaseEvent.hpp:7
sources
code
Editor
ImguiEditor
ImguiInput.hpp
Generated by
1.12.0