RemoveRPCsInGroup() public method

public RemoveRPCsInGroup ( int group ) : void
group int
return void
Beispiel #1
0
 public static void RemoveRPCsInGroup(int targetGroup)
 {
     if (VerifyCanUseNetwork())
     {
         networkingPeer.RemoveRPCsInGroup(targetGroup);
     }
 }
Beispiel #2
0
    /// <summary>
    /// Remove all buffered RPCs with given group
    /// </summary>
    /// <param name="group"></param>
    public static void RemoveRPCsInGroup(int group)
    {
        if (!VerifyCanUseNetwork())
        {
            return;
        }

        networkingPeer.RemoveRPCsInGroup(group);
    }