mirror of
https://github.com/theoleuthardt/hwr-notes.git
synced 2026-06-05 23:51:09 +00:00
484 B
484 B
Einstiegsprojekt in Visual Studio
Erstellung des Projekts
- C++ Game erstellen auswählen (Win11 SDK wichtig!)
- Desktop Installer Projekt erstellen
- main.cpp als Entrypoint
- windows.h inkludieren für Windows API!
- Docs: Windows API Docs
#include <Windows.h>
int main(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nShowCmd
)
{
return 0;
};