Program.cs 385 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Urho.Desktop;
  7. using Urho.Samples;
  8. namespace Urho.Tests.Desktop
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. Environment.CurrentDirectory = @"..\..\..\..\Urho3D\Source\bin";
  15. new AnimatingScene(new ApplicationOptions("Data")).Run();
  16. }
  17. }
  18. }