Stardew Engine
Loading...
Searching...
No Matches
AssertLib.h
Go to the documentation of this file.
1#ifndef ASSERT_LIB_H
2#define ASSERT_LIB_H
3
4#include <assert.h>
5
6#define EASSERT(e) assert(e)
7#ifdef _DEBUG
8#define EVERIFY(e) EASSERT(e)
9#else
10#define EVERIFY(e) e
11#endif
12
13
14#endif