mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Number of small changes
This commit is contained in:
@@ -26,7 +26,7 @@ namespace OpenSim
|
||||
}
|
||||
}
|
||||
|
||||
public void ClientInPacket(uint circuitCode, Packet packet)
|
||||
public virtual void ClientInPacket(uint circuitCode, Packet packet)
|
||||
{
|
||||
if (this.ClientThreads.ContainsKey(circuitCode))
|
||||
{
|
||||
@@ -34,22 +34,22 @@ namespace OpenSim
|
||||
}
|
||||
}
|
||||
|
||||
public bool AddNewCircuitCodeClient(uint circuitCode)
|
||||
public virtual bool AddNewCircuitCodeClient(uint circuitCode)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public void SendPacketToAllClients(Packet packet)
|
||||
public virtual void SendPacketToAllClients(Packet packet)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void SendPacketToAllExcept(Packet packet, SimClient simClient)
|
||||
public virtual void SendPacketToAllExcept(Packet packet, SimClient simClient)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public virtual void AddClientPacketHanlder(PacketType packetType, PacketMethod handler)
|
||||
public virtual void AddClientPacketHandler(PacketType packetType, PacketMethod handler)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user