public override void HypeDidBecomeReady(HYP hype)
 {
     Console.WriteLine("HYPE DID BECOME READY!!!");
     Console.WriteLine("Restarting Hype");
     hype.StartWithOptions(HypeOptions);
 }
Example #2
0
 private void RequestHypeToStart()
 {
     hype.StartWithOptions(Constants.HYPOptionIdentifierKey);
     hype.AddNetworkObserver(networkObserver);
 }