restructure project

This commit is contained in:
2023-08-13 11:59:13 +02:00
parent b4836847f5
commit 50c17e8ed1
210 changed files with 471 additions and 422 deletions

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 {
bool Create();
void Render();
void Update();
void Destroy();
void PollEvents();
bool IsCloseRequested();
bool IsMouseDown(int button);
float GetAspectRatio();
int GetWindowWidth();
int GetWindowHeight();
}
#endif /* WINDOW_DISPLAY_H_ */