mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-04 17:54:01 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
8
thirdparty/raknet/Source/RakAssert.h
vendored
Normal file
8
thirdparty/raknet/Source/RakAssert.h
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
#include <assert.h>
|
||||
|
||||
// So stupid Linux doesn't assert in release
|
||||
#ifdef _DEBUG
|
||||
#define RakAssert(x) assert(x);
|
||||
#else
|
||||
#define RakAssert(x)
|
||||
#endif
|
Reference in New Issue
Block a user