HandmadeHero/project/engine/win32_engine.cpp
2023-09-26 19:10:40 -04:00

12 lines
155 B
C++

#include "platform/win32.hpp"
#include "engine.hpp"
b32 WINAPI DllMain(
HINSTANCE instance,
DWORD reason_for_call,
LPVOID reserved
)
{
return true;
}