forked from wyrover/BattleCity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGUI.h
More file actions
23 lines (17 loc) · 600 Bytes
/
GUI.h
File metadata and controls
23 lines (17 loc) · 600 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**************************************************
Autor: Damian "RippeR" Dyńdo
URL: http://warsztat.gd/projects.php?x=view&id=2063
**************************************************/
#ifndef GUI_H_INCLUDED
#define GUI_H_INCLUDED
#include <string>
#include "Types.h"
using namespace std;
class CGUI {
public:
void DrawGameplayStats(); //Ryoswanie statystyk
void RenderText(const string& text, //Rysowanie tekstu czcionk¹
double x, double y, COLOR color = COLOR_NONE);
private:
};
#endif // GUI_H_INCLUDED