aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorlbsa712007-08-15 21:24:25 +0000
committerlbsa712007-08-15 21:24:25 +0000
commit94af93874226bf4441a35bfd4cf498e9ed83ccf5 (patch)
tree4fd6498ca8384f375bfc1365e74469af13954ae0 /OpenSim/Framework
parentcompile error removed :) (diff)
downloadopensim-SC_OLD-94af93874226bf4441a35bfd4cf498e9ed83ccf5.zip
opensim-SC_OLD-94af93874226bf4441a35bfd4cf498e9ed83ccf5.tar.gz
opensim-SC_OLD-94af93874226bf4441a35bfd4cf498e9ed83ccf5.tar.bz2
opensim-SC_OLD-94af93874226bf4441a35bfd4cf498e9ed83ccf5.tar.xz
The 'Party Party Groupie Groupie Life is a game' commit:
* Added prototypical MoneyBalance support * Finalized konceptual touch wiring * Turned SimpleApp into a tedious harvesting game.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/General/Interfaces/IClientAPI.cs1
-rw-r--r--OpenSim/Framework/General/NullClientAPI.cs5
2 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs
index ff794f9..f39d0c7 100644
--- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs
+++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs
@@ -216,5 +216,6 @@ namespace OpenSim.Framework.Interfaces
216 void SendAlertMessage(string message); 216 void SendAlertMessage(string message);
217 void SendAgentAlertMessage(string message, bool modal); 217 void SendAgentAlertMessage(string message, bool modal);
218 void SendLoadURL(string objectname, LLUUID objectID, LLUUID ownerID, bool groupOwned, string message, string url); 218 void SendLoadURL(string objectname, LLUUID objectID, LLUUID ownerID, bool groupOwned, string message, string url);
219 bool AddMoney( int debit );
219 } 220 }
220} 221}
diff --git a/OpenSim/Framework/General/NullClientAPI.cs b/OpenSim/Framework/General/NullClientAPI.cs
index 876c9b3..e85b88f 100644
--- a/OpenSim/Framework/General/NullClientAPI.cs
+++ b/OpenSim/Framework/General/NullClientAPI.cs
@@ -145,6 +145,11 @@ namespace OpenSim.Framework
145 public void SendAgentAlertMessage(string message, bool modal) { } 145 public void SendAgentAlertMessage(string message, bool modal) { }
146 public void SendLoadURL(string objectname, LLUUID objectID, LLUUID ownerID, bool groupOwned, string message, string url) { } 146 public void SendLoadURL(string objectname, LLUUID objectID, LLUUID ownerID, bool groupOwned, string message, string url) { }
147 147
148
149 public bool AddMoney(int debit)
150 {
151 return false;
152 }
148 } 153 }
149} 154}
150 155