Removed SteamClient.OnCallbackException, SteamServer.OnCallbackException

This commit is contained in:
Garry Newman 2020-02-28 11:41:11 +00:00
parent e6c0167c48
commit c24b247094
2 changed files with 0 additions and 6 deletions

View File

@ -89,11 +89,8 @@ namespace Steamworks
openInterfaces.Clear();
}
public static Action<Exception> OnCallbackException;
public static bool IsValid => initialized;
public static void Shutdown()
{
if ( !IsValid ) return;

View File

@ -22,9 +22,6 @@ namespace Steamworks
public static bool IsValid => Internal != null && Internal.IsValid;
public static Action<Exception> OnCallbackException;
internal static void InstallEvents()
{
Dispatch.Install<ValidateAuthTicketResponse_t>( x => OnValidateAuthTicketResponse?.Invoke( x.SteamID, x.OwnerSteamID, x.AuthSessionResponse ), true );