mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
bcdbedc0be
* Add RakNet source files to the VS project
9 lines
147 B
C
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
|