31 lines
398 B
C++
31 lines
398 B
C++
#include "inGameScene.h"
|
|
#include <GLFW/glfw3.h>
|
|
|
|
void start()
|
|
{
|
|
|
|
}
|
|
|
|
void stop()
|
|
{
|
|
|
|
}
|
|
|
|
void render()
|
|
{
|
|
|
|
}
|
|
|
|
void update(GLFWwindow* window)
|
|
{
|
|
|
|
}
|
|
|
|
void onKey(int key, int scancode, int action, int mods)
|
|
{
|
|
/**
|
|
* misschien iets van als niet in settings dan hoeft alleen escape een knop zijn als reserve optie. Als wel in settings, dan heb je hetzelfde hoe je in het in het begin scherm hebt.
|
|
**/
|
|
}
|
|
|