diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index ea081e2..3f77092 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -587,6 +587,23 @@ namespace OpenSim.Framework | |||
587 | } | 587 | } |
588 | } | 588 | } |
589 | 589 | ||
590 | public class PlacesReplyData | ||
591 | { | ||
592 | public UUID OwnerID; | ||
593 | public string Name; | ||
594 | public string Desc; | ||
595 | public int ActualArea; | ||
596 | public int BillableArea; | ||
597 | public byte Flags; | ||
598 | public uint GlobalX; | ||
599 | public uint GlobalY; | ||
600 | public uint GlobalZ; | ||
601 | public string SimName; | ||
602 | public UUID SnapshotID; | ||
603 | public uint Dwell; | ||
604 | public int Price; | ||
605 | } | ||
606 | |||
590 | /// <summary> | 607 | /// <summary> |
591 | /// Specifies the fields that have been changed when sending a prim or | 608 | /// Specifies the fields that have been changed when sending a prim or |
592 | /// avatar update | 609 | /// avatar update |
@@ -1321,5 +1338,7 @@ namespace OpenSim.Framework | |||
1321 | void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId); | 1338 | void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId); |
1322 | 1339 | ||
1323 | void StopFlying(ISceneEntity presence); | 1340 | void StopFlying(ISceneEntity presence); |
1341 | |||
1342 | void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data); | ||
1324 | } | 1343 | } |
1325 | } | 1344 | } |