Skip to content
This repository has been archived by the owner on Dec 20, 2021. It is now read-only.

Making Game able to launch

Rodion edited this page Jul 11, 2018 · 2 revisions

Making Game able to launch

  • Open "Program.cs" file
  • Add line above
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);

with this line

GameApplication.Run(new MainWindow());
  • Now if you launch your project you can see black window with title setted later

Game window

Clone this wiki locally