Example #1
0
 public void OnNetErrorOccured(string operation, INetError error)
 {
     RavenhillEvents.OnNetErrorOccured(operation, error);
     Debug.Log($"Error: {operation} => {error.ToString()}".Colored(ColorType.red));
 }
Example #2
0
 public static void OnNetErrorOccured(string operation, INetError error)
 {
     NetErrorOccured?.Invoke(operation, error);
 }