[WIP] Collision detectie moet nog worden egimplementeerd om naar game over screen te gaan

This commit is contained in:
DESKTOP-EBR7IVA\kimve
2021-06-11 16:49:09 +02:00
parent a65f3391f7
commit e51b56b156
10 changed files with 251 additions and 5 deletions

View File

@@ -0,0 +1,26 @@
#pragma once
#include "scene.h"
#include "../gui/gui_element.h"
namespace scene
{
extern GLFWwindow* window;
class Game_Over_Scene : public scene::Scene
{
private:
scene::Scenes return_value = scene::Scenes::GAMEOVER;
public:
Game_Over_Scene();
Scenes start(GLFWwindow* window) override;
void render() override;
void update(GLFWwindow* window) override;
void onKey(GLFWwindow* window, int key, int scancode, int action, int mods) override;
};
}