diff options
Diffstat (limited to 'Runner/Utilities/Assert.h')
-rw-r--r-- | Runner/Utilities/Assert.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Runner/Utilities/Assert.h b/Runner/Utilities/Assert.h new file mode 100644 index 0000000..aab7b73 --- /dev/null +++ b/Runner/Utilities/Assert.h @@ -0,0 +1,8 @@ +#ifndef ASSERT_H +#define ASSERT_H + +#include <assert.h> + +#define Assert(c) assert(c) + +#endif
\ No newline at end of file |