13 lines
246 B
C++
13 lines
246 B
C++
![]() |
#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);
|
||
|
};
|