mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +01:00
4fd92a1549
Also move up source files into the root directory, as there's nothing else in this directory
17 lines
227 B
C++
17 lines
227 B
C++
#include <functional>
|
|
|
|
#if RW_DEBUG
|
|
std::function<void()> _rw_abort_cb[2] = {nullptr, nullptr};
|
|
|
|
#if defined(RW_WINDOWS)
|
|
#define WINDOWS_LEAN_AND_MEAN
|
|
#include <Windows.h>
|
|
|
|
void WinBreak() {
|
|
DebugBreak();
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|