SA-MP/raknet/RakAssert.h
RD42 bcdbedc0be Revert RakNet source files back to the original v2.518 state
* Add RakNet source files to the VS project
2024-08-16 23:33:48 +08:00

9 lines
147 B
C

#include <assert.h>
// So stupid Linux doesn't assert in release
#ifdef _DEBUG
#define RakAssert(x) assert(x);
#else
#define RakAssert(x)
#endif