Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/engine/core/include/imguilayer.hpp
2020-08-11 12:07:21 -04:00

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);
};