diff options
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 1a6a5a4..4071e47 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -722,7 +722,13 @@ namespace OpenSim.Framework | |||
722 | void SendImagePart(ushort numParts, UUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec); | 722 | void SendImagePart(ushort numParts, UUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec); |
723 | 723 | ||
724 | void SendShutdownConnectionNotice(); | 724 | void SendShutdownConnectionNotice(); |
725 | void SendSimStats(Packet pack); | 725 | |
726 | /// <summary> | ||
727 | /// Send statistical information about the sim to the client. | ||
728 | /// </summary> | ||
729 | /// <param name="stats"></param> | ||
730 | void SendSimStats(SimStats stats); | ||
731 | |||
726 | void SendObjectPropertiesFamilyData(uint RequestFlags, UUID ObjectUUID, UUID OwnerID, UUID GroupID, | 732 | void SendObjectPropertiesFamilyData(uint RequestFlags, UUID ObjectUUID, UUID OwnerID, UUID GroupID, |
727 | uint BaseMask, uint OwnerMask, uint GroupMask, uint EveryoneMask, | 733 | uint BaseMask, uint OwnerMask, uint GroupMask, uint EveryoneMask, |
728 | uint NextOwnerMask, int OwnershipCost, byte SaleType, int SalePrice, uint Category, | 734 | uint NextOwnerMask, int OwnershipCost, byte SaleType, int SalePrice, uint Category, |