- Added GCC headers for intptr_t to tarray.h.

- Added MF5_PAINLESS flag for projectiles that don't make the target go into
  the pain state.


SVN r1446 (trunk)
This commit is contained in:
Christoph Oelckers 2009-02-24 21:19:10 +00:00
commit d91f0c4090
5 changed files with 17 additions and 2 deletions

View file

@ -38,6 +38,13 @@
#include <stdlib.h>
#include <assert.h>
#include <new>
#if !defined(_WIN32)
#include <inttypes.h> // for intptr_t
#elif !defined(_MSC_VER)
#include <stdint.h> // for mingw
#endif
#include "m_alloc.h"
class FArchive;