public static bool ValidateSdkErrorEvent(string gameKey, string gameSecret, GAErrorSeverity type) { if (!GAValidator.ValidateKeys(gameKey, gameSecret)) { return(false); } if (type != GAErrorSeverity.Undefined) { return(true); } Debug.Log("Validation fail - sdk error event - type: Type was unsupported value."); return(false); }