-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgraphics.h
More file actions
25 lines (21 loc) · 730 Bytes
/
graphics.h
File metadata and controls
25 lines (21 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*********************************************************
* EGE (Easy Graphics Engine) 24.04
* FileName: graphics.h
* Website: https://xege.org
* Community: https://club.xege.org
* GitHub: https://github.com/wysaid/xege
* GitHub: https://github.com/Easy-Graphics-Engine
* Gitee: https://gitee.com/xege/xege
* Blog: https://wysaid.org
* E-Mail: this@wysaid.org
* E-Mail: misakamm@gmail.com
*
*********************************************************/
#ifndef EGE_GRAPHICS_H
#define EGE_GRAPHICS_H
#ifndef __cplusplus
#error You must use a C++ compiler and ensure that your source files is named with the '.cpp' suffix.
#endif
#include "ege.h"
using namespace ege;
#endif