XRay3D/include/debug.h
2020-04-17 18:11:57 +02:00

11 lines
112 B
C++

#pragma once
#ifndef DEBUG
#define DEBUG
#include <string>
void Xr_Log(std::string);
void Xr_Crash();
#endif