hwr-notes/Grafik/Hackbarth/Hackbarth Einstiegsprojekt.md
2026-04-09 11:24:56 +02:00

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
#include <Windows.h>

int main(
  HINSTANCE hInstance,
  HINSTANCE hPrevInstance,
  LPSTR     lpCmdLine,
  int       nShowCmd
)
{
	return 0;
};