Implement SendPlacesReply

This commit is contained in:
Melanie
2010-12-30 00:31:59 +01:00
parent dbaaccf92a
commit 2cb2bff9b2
8 changed files with 97 additions and 0 deletions

View File

@@ -587,6 +587,23 @@ namespace OpenSim.Framework
}
}
public class PlacesReplyData
{
public UUID OwnerID;
public string Name;
public string Desc;
public int ActualArea;
public int BillableArea;
public byte Flags;
public uint GlobalX;
public uint GlobalY;
public uint GlobalZ;
public string SimName;
public UUID SnapshotID;
public uint Dwell;
public int Price;
}
/// <summary>
/// Specifies the fields that have been changed when sending a prim or
/// avatar update
@@ -1321,5 +1338,7 @@ namespace OpenSim.Framework
void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId);
void StopFlying(ISceneEntity presence);
void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data);
}
}