#pragma once
#ifdef _WIN32
#include <windows.h>
#define DEBUG_BREAK() DebugBreak()
#else
#include <csignal>
#define DEBUG_BREAK() raise(SIGTRAP)
#endif
#ifndef APIENTRY
#define APIENTRY