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

Partially done object scripting and interactions.

Most of 0.4 ;)
This commit is contained in:
Michał W. Urbańczyk
2007-11-18 22:58:28 +00:00
parent 8b73ab8492
commit 556311c9ab
31 changed files with 2201 additions and 1283 deletions

View File

@@ -3,6 +3,7 @@
#define CHECKTIME 1
#if CHECKTIME
#include "timeHandler.h"
#include <boost/logic/tribool.hpp>
#include "int3.h"
#include <iostream>
#define THC
@@ -48,4 +49,14 @@ const int NAMES_PER_TOWN=16;
#define DEFBYPASS
#define HANDLE_EXCEPTION \
catch (const std::exception& e) { \
std::cerr << e.what() << std::endl; \
} \
catch (const std::exception * e) \
{ \
std::cerr << e->what()<< std::endl; \
delete e; \
}
#endif //GLOBAL_H