12 lines
246 B
C++
Executable file
12 lines
246 B
C++
Executable file
#pragma once
|
|
|
|
class ImGuiLayer {
|
|
public:
|
|
ImGuiLayer();
|
|
|
|
void begin_frame(const float delta_time);
|
|
void render(int index);
|
|
|
|
void process_key_down(unsigned int keyCode);
|
|
void process_key_up(unsigned int keyCode);
|
|
};
|