Program.cs 292 B

12345678910111213
  1. using Urho;
  2. namespace $safeprojectname$
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. new MyGame(new ApplicationOptions("MyData")).Run();
  9. // For a console app Urho will create a Windows/macOS/Linux window using SDL
  10. }
  11. }
  12. }