1er commit

This commit is contained in:
2021-08-21 10:14:47 +02:00
commit a99ecf7c2d
99 changed files with 66605 additions and 0 deletions

31
include/window/Display.h Normal file
View File

@@ -0,0 +1,31 @@
/*
* Display.h
*
* Created on: 4 nov. 2020
* Author: simon
*/
#ifndef WINDOW_DISPLAY_H_
#define WINDOW_DISPLAY_H_
namespace Display{
void create();
void render();
void update();
void destroy();
void pollEvents();
bool isCloseRequested();
const bool isMouseDown(int button);
float getAspectRatio();
int getWindowWidth();
int getWindowHeight();
}
#endif /* WINDOW_DISPLAY_H_ */