1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-30 08:57:00 +02:00
vcmi/AI/GeniusAI/Common.h
Michał W. Urbańczyk 64f098017b Fixed linker problems.
2009-08-05 12:24:31 +00:00

14 lines
318 B
C

#ifndef __GENIUS_COMMON__
#define __GENIUS_COMMON__
#ifdef __GNUC__
#define strcpy_s(a, b, c) strncpy(a, c, b)
#endif
#pragma warning (disable: 4100 4244)
#include "../../AI_Base.h"
#pragma warning (default: 4100 4244)
void DbgBox(const char *msg, bool messageBox = false);
#endif/*__GENIUS_COMMON__*/