HandmadeHero/project/engine/win32_engine.cpp

12 lines
155 B
C++
Raw Normal View History

2023-09-26 14:26:35 -07:00
#include "platform/win32.hpp"
#include "engine.hpp"
b32 WINAPI DllMain(
HINSTANCE instance,
DWORD reason_for_call,
LPVOID reserved
)
{
return true;
}