Holy fucking shit I don't want to work on this. Sibly, you son of a ...

This commit is contained in:
Michael Fabain Dirks
2016-05-07 22:49:54 +02:00
parent b75ca4142c
commit aa22d21fb5
2577 changed files with 166501 additions and 194685 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef BBSYS_H
#define BBSYS_H
#include "basic.h"
#include "../gxruntime/gxruntime.h"
extern bool debug;
extern gxRuntime *gx_runtime;
struct bbEx{
const char *err;
bbEx( const char *e ):err(e){
if( e ) gx_runtime->debugError( e );
}
};
#define ThrowRuntimeException( _X_ ) throw bbEx( _X_ );
#endif