Serialization work

This commit is contained in:
Antoine Pilote
2021-05-15 23:57:26 -04:00
parent b53d2e729e
commit 5f364dabb2
27 changed files with 368 additions and 305 deletions

View File

@@ -22,6 +22,8 @@ public:
static Window* Get();
GLFWwindow* GetHandle();
int Init();
void Update(Timestep ts);
void Draw();
@@ -33,5 +35,7 @@ public:
void DrawQuad();
Ref<Scene> GetScene();
bool SetScene(Ref<Scene> scene);
Ref<FrameBuffer> GetFrameBuffer() const;
};