Files
NS_unknown_game/Frostbite2D/include/frostbite2D/platform/windows.h
T

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