endSession() public static method

public static endSession ( ) : void
return void
Esempio n. 1
0
 void OnApplicationPause(bool didPause)
 {
     if (didPause)
     {
         if (_instance != null)
         {
             KiipShim.endSession();
         }
     }
     else
     {
         if (_instance != null)
         {
             KiipShim.startSession();
         }
     }
 }