Files

22 lines
238 B
C++

#pragma once
#ifdef _WIN32
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <windows.h>
namespace frostbite2D {
void windowsInit();
} // namespace frostbite2D
#endif