aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorAdam Frisby2008-02-04 10:39:30 +0000
committerAdam Frisby2008-02-04 10:39:30 +0000
commit6fbc64af5e2d179e2235f21645dd717a4066592d (patch)
tree39794023c5c0fe27f75813722f73176b3c61159d /OpenSim/Framework/IClientAPI.cs
parent* Lowered maxchunk from 1500 bytes to 1250 bytes to make sure packets fit bel... (diff)
downloadopensim-SC_OLD-6fbc64af5e2d179e2235f21645dd717a4066592d.zip
opensim-SC_OLD-6fbc64af5e2d179e2235f21645dd717a4066592d.tar.gz
opensim-SC_OLD-6fbc64af5e2d179e2235f21645dd717a4066592d.tar.bz2
opensim-SC_OLD-6fbc64af5e2d179e2235f21645dd717a4066592d.tar.xz
* Whole buncha stuff.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IClientAPI.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index aaf27bb..529614b 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -401,8 +401,7 @@ namespace OpenSim.Framework
401 401
402 public delegate void PacketStats(int inPackets, int outPackets, int unAckedBytes); 402 public delegate void PacketStats(int inPackets, int outPackets, int unAckedBytes);
403 403
404 404 public delegate void MoneyTransferRequest(LLUUID sourceID, LLUUID destID, int amount, int transactionType, string description);
405
406 405
407 406
408 public delegate void ObjectPermissions( 407 public delegate void ObjectPermissions(
@@ -505,6 +504,9 @@ namespace OpenSim.Framework
505 event FriendshipTermination OnTerminateFriendship; 504 event FriendshipTermination OnTerminateFriendship;
506 event PacketStats OnPacketStats; 505 event PacketStats OnPacketStats;
507 506
507 // Financial packets
508 event MoneyTransferRequest OnMoneyTransferRequest;
509
508 510
509 LLVector3 StartPos { get; set; } 511 LLVector3 StartPos { get; set; }
510 512