aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorTeravus Ovares2008-02-05 05:26:18 +0000
committerTeravus Ovares2008-02-05 05:26:18 +0000
commitca5aadfbff63e03b7ca081e753204d8da040c9bb (patch)
treee2d19e01678c27cff57bc26257cec7385c3df274 /OpenSim/Framework
parentAdded copyright statements. (diff)
downloadopensim-SC_OLD-ca5aadfbff63e03b7ca081e753204d8da040c9bb.zip
opensim-SC_OLD-ca5aadfbff63e03b7ca081e753204d8da040c9bb.tar.gz
opensim-SC_OLD-ca5aadfbff63e03b7ca081e753204d8da040c9bb.tar.bz2
opensim-SC_OLD-ca5aadfbff63e03b7ca081e753204d8da040c9bb.tar.xz
* Refactored the sound calls to SceneObjectPart
* Fixed a few bugs * Wrote an example module to make certain event systems more mature.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IClientAPI.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 2ef05ae..d2d7365 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -403,6 +403,8 @@ namespace OpenSim.Framework
403 403
404 public delegate void MoneyTransferRequest(LLUUID sourceID, LLUUID destID, int amount, int transactionType, string description); 404 public delegate void MoneyTransferRequest(LLUUID sourceID, LLUUID destID, int amount, int transactionType, string description);
405 405
406 // We keep all this information for fraud purposes in the future.
407 public delegate void MoneyBalanceRequest(IClientAPI remoteClient, LLUUID agentID, LLUUID sessionID, LLUUID TransactionID);
406 408
407 public delegate void ObjectPermissions( 409 public delegate void ObjectPermissions(
408 IClientAPI remoteClinet, LLUUID AgentID, LLUUID SessionID, 410 IClientAPI remoteClinet, LLUUID AgentID, LLUUID SessionID,
@@ -507,6 +509,8 @@ namespace OpenSim.Framework
507 // Financial packets 509 // Financial packets
508 event MoneyTransferRequest OnMoneyTransferRequest; 510 event MoneyTransferRequest OnMoneyTransferRequest;
509 511
512 event MoneyBalanceRequest OnMoneyBalanceRequest;
513
510 514
511 LLVector3 StartPos { get; set; } 515 LLVector3 StartPos { get; set; }
512 516