Add a result param to te money module interface

This commit is contained in:
Melanie
2013-06-13 02:52:11 +02:00
parent 689969e143
commit 62c277ff9f
3 changed files with 7 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ namespace OpenSim.Framework
public interface IMoneyModule
{
bool ObjectGiveMoney(UUID objectID, UUID fromID, UUID toID,
int amount, UUID txn);
int amount, UUID txn, out string reason);
int GetBalance(UUID agentID);
bool UploadCovered(UUID agentID, int amount);