Program.cs 471 B

12345678910111213141516171819
  1. 
  2. using System;
  3. using System.Threading.Tasks;
  4. namespace Solana.Unity.Bolt.Test
  5. {
  6. class Program
  7. {
  8. static async Task Main(string[] args)
  9. {
  10. var framework = new Framework();
  11. await framework.Initialize();
  12. await WorldTest.Test.Run(framework);
  13. await ECSTest.Test.Run(framework);
  14. await SessionTest.Test.Run(framework);
  15. await AccelerationTest.Test.Run(framework);
  16. }
  17. }
  18. }