Made multiple managers for individual pieces

Added UIManager that renders the UI inside the window
This commit is contained in:
2022-05-28 18:49:08 +02:00
parent dae8830e2b
commit 76c051e407
18 changed files with 358 additions and 197 deletions

View File

@ -0,0 +1,18 @@
#pragma once
#include <vector>
#include "Graphics/Window.h"
namespace BarinkEngine {
class InputManager {
public:
InputManager();
void PollEvents();
void attach(BarinkWindow* window);
private:
std::vector<BarinkWindow*> windows;
};
}