11 lines
112 B
C
11 lines
112 B
C
|
#pragma once
|
||
|
#ifndef DEBUG
|
||
|
#define DEBUG
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
void Xr_Log(std::string);
|
||
|
void Xr_Crash();
|
||
|
|
||
|
#endif
|