Remove extra semicolons

This commit is contained in:
Paul Pacheco 2018-10-12 15:59:01 -05:00
parent 6356e411be
commit 5879d24cb0
11 changed files with 11 additions and 11 deletions

View File

@ -14,7 +14,7 @@ public enum FilterLevel
Warn = 3,
Error = 4,
SetInScripting = -1
};
}
public static FilterLevel currentLogLevel = FilterLevel.Info;

View File

@ -180,7 +180,7 @@ public string DebugString()
{
return invokeType + ":" + invokeClass + ":" + invokeFunction.GetMethodName();
}
};
}
static Dictionary<int, Invoker> s_CmdHandlerDelegates = new Dictionary<int, Invoker>();

View File

@ -365,5 +365,5 @@ internal static void SetActive(bool state)
{
s_IsActive = state;
}
};
}
}

View File

@ -1065,5 +1065,5 @@ public static void UNetStaticUpdate()
NetworkClient.UpdateClients();
NetworkManager.UpdateScene();
}
};
}
}

View File

@ -10,7 +10,7 @@ public enum PlayerSpawnMethod
{
Random,
RoundRobin
};
}
[AddComponentMenu("Network/NetworkManager")]
public class NetworkManager : MonoBehaviour

View File

@ -12,7 +12,7 @@ public enum CheckMethod
{
Physics3D,
Physics2D
};
}
[TooltipAttribute("The maximum range that objects will be visible at.")]
public int visRange = 10;

View File

@ -322,5 +322,5 @@ public override string ToString()
msg.Deserialize(this);
return msg;
}
};
}
}

View File

@ -1292,5 +1292,5 @@ public static bool SpawnObjects()
}
return true;
}
};
}
}

View File

@ -387,5 +387,5 @@ public void Write(MessageBase msg)
{
msg.Serialize(this);
}
};
}
}

View File

@ -220,7 +220,7 @@ public enum Operation
OP_REMOVEAT,
OP_SET,
OP_DIRTY
};
}
NetworkBehaviour m_Behaviour;
int m_CmdHash;

View File

@ -91,5 +91,5 @@ void ProcessMethods()
}
}
}
};
}
}