Ejemplo n.º 1
0
 protected virtual void OnSteamShutdown(SteamShutdownEventArgs e)
 {
     if (this.SteamShutdown != null)
     {
         this.SteamShutdown(this, e);
     }
 }
Ejemplo n.º 2
0
 private void SteamManager_SteamShutdown(object sender, SteamShutdownEventArgs e)
 {
     if (this.SteamCallbacks != null)
     {
         this.SteamCallbacks.UnbindAll();
         this.SteamCallbacks = null;
     }
     SteamManager.SteamClientCallbacks.GameLobbyJoinRequested        = null;
     SteamManager.SteamClientCallbacks.GameOverlayActivated          = null;
     SteamManager.SteamClientCallbacks.GameRichPresenceJoinRequested = null;
     SteamManager.SteamClientCallbacks.SteamShutdown = null;
 }