File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Assets/ArtNet/Runtime/Scripts Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ public sealed class UdpReceiver
1818 public bool IsRunning => _task is { IsCanceled : false , IsCompleted : false } ;
1919
2020 public ReceivedPacketEventHandler OnReceivedPacket = ( _ , _ , _ ) => { } ;
21- public ErrorOccuredEventHandler OnUdpStartFailed = _ => { } ;
22- public ErrorOccuredEventHandler OnUdpReceiveFailed = _ => { } ;
23- public ErrorOccuredEventHandler OnUdpReceiveRaiseException = _ => { } ;
21+ public ErrorOccurredEventHandler OnUdpStartFailed = _ => { } ;
22+ public ErrorOccurredEventHandler OnUdpReceiveFailed = _ => { } ;
23+ public ErrorOccurredEventHandler OnUdpReceiveRaiseException = _ => { } ;
2424
2525 public delegate void ReceivedPacketEventHandler ( byte [ ] receiveBuffer , int length , EndPoint remoteEp ) ;
26- public delegate void ErrorOccuredEventHandler ( Exception e ) ;
26+ public delegate void ErrorOccurredEventHandler ( Exception e ) ;
2727 public UdpReceiver ( int port )
2828 {
2929 Port = port ;
You can’t perform that action at this time.
0 commit comments