diff options
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-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 21ffa9a..a6be157 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -584,6 +584,23 @@ namespace OpenSim.Framework | |||
584 | } | 584 | } |
585 | } | 585 | } |
586 | 586 | ||
587 | public class PlacesReplyData | ||
588 | { | ||
589 | public UUID OwnerID; | ||
590 | public string Name; | ||
591 | public string Desc; | ||
592 | public int ActualArea; | ||
593 | public int BillableArea; | ||
594 | public byte Flags; | ||
595 | public uint GlobalX; | ||
596 | public uint GlobalY; | ||
597 | public uint GlobalZ; | ||
598 | public string SimName; | ||
599 | public UUID SnapshotID; | ||
600 | public uint Dwell; | ||
601 | public int Price; | ||
602 | } | ||
603 | |||
587 | /// <summary> | 604 | /// <summary> |
588 | /// Specifies the fields that have been changed when sending a prim or | 605 | /// Specifies the fields that have been changed when sending a prim or |
589 | /// avatar update | 606 | /// avatar update |
@@ -1316,5 +1333,7 @@ namespace OpenSim.Framework | |||
1316 | void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId); | 1333 | void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId); |
1317 | 1334 | ||
1318 | void StopFlying(ISceneEntity presence); | 1335 | void StopFlying(ISceneEntity presence); |
1336 | |||
1337 | void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data); | ||
1319 | } | 1338 | } |
1320 | } | 1339 | } |