Definition in file Helper.cpp.
#include "..\AEngine\AEngine.h"
Include dependency graph for Helper.cpp:

Go to the source code of this file.
Functions | |
| string & | stripComments (string &str) |
| void | drawBox (Box &b, Vec3D color) |
|
||||||||||||
|
Definition at line 40 of file Helper.cpp. References Box::bottom, Box::left, overlay_rect(), Box::right, Box::top, and Vec2D. Referenced by renderMainMenu(), and renderMultiplayMenu().
|
|
|
Definition at line 28 of file Helper.cpp.
00029 {
00030 size_t start;
00031 size_t end;
00032 while( (start = str.find("//")) != string::npos )
00033 {
00034 end = str.find("\n", start)+1;
00035 str.erase(start, end-start);
00036 }
00037 return str;
00038 }
|
1.3-rc2