Program.cs 201 B

12345678910111213
  1. using Urho;
  2. namespace $safeprojectname$
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. UrhoEngine.Init();
  9. new MyGame().Run();
  10. }
  11. }
  12. }