restructure project
This commit is contained in:
31
include/client/window/Display.h
Normal file
31
include/client/window/Display.h
Normal 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_ */
|
||||
Reference in New Issue
Block a user