ejoy / ant

Ant game engine
MIT License
3.83k stars 387 forks source link

window close on win32 #183

Open HengHuH opened 4 months ago

HengHuH commented 4 months ago

shutdown program from lua.

cloudwu commented 4 months ago

Don’t use TerminateProcess , post close message to window instead

cloudwu commented 4 months ago

SendMessage(G.hWnd, WM_SYSCOMMAND, SC_CLOSE, 1) after UnregisterClassW , This is a bit weird . cc @actboy168