UnityEngine.Network.INTERNAL_CALL_CloseConnection C# (CSharp) 메소드

INTERNAL_CALL_CloseConnection() 개인적인 메소드

private INTERNAL_CALL_CloseConnection ( NetworkPlayer &target, bool sendDisconnectionNotification ) : void
target NetworkPlayer
sendDisconnectionNotification bool
리턴 void
        private static extern void INTERNAL_CALL_CloseConnection(ref NetworkPlayer target, bool sendDisconnectionNotification);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

예제 #1
0
 public static void CloseConnection(NetworkPlayer target, bool sendDisconnectionNotification)
 {
     Network.INTERNAL_CALL_CloseConnection(ref target, sendDisconnectionNotification);
 }