1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-06 09:09:40 +02:00

Now netcode branch may be compiled with gcc. Sorry can't check build with MSVC

This commit is contained in:
Vadim Glazunov
2008-08-04 09:05:52 +00:00
parent cc7be20b07
commit 6e737bbf3c
24 changed files with 216 additions and 116 deletions

View File

@@ -15,7 +15,12 @@
#include <queue>
#include <sstream>
#ifndef __GNUC__
const double M_PI = 3.14159265358979323846;
#else
#define _USE_MATH_DEFINES
#include <cmath>
#endif
extern SDL_Surface * screen;
extern TTF_Font * GEOR13;