Add needed dummy to sample money

avinationmerge
Melanie 2011-02-17 18:49:03 +01:00
parent 3f93db8371
commit c79f79fc84
2 changed files with 5 additions and 0 deletions

View File

@ -40,6 +40,7 @@ namespace OpenSim.Framework
bool AmountCovered(IClientAPI client, int amount);
void ApplyCharge(UUID agentID, int amount, string text);
void ApplyUploadCharge(UUID agentID, int amount, string text);
void MoveMoney(UUID fromUser, UUID toUser, int amount, string text);
int UploadCharge { get; }
int GroupCreationCharge { get; }

View File

@ -838,6 +838,10 @@ namespace OpenSim.Region.OptionalModules.World.MoneyModule
if (module != null)
module.BuyObject(remoteClient, categoryID, localID, saleType, salePrice);
}
public void MoveMoney(UUID fromAgentID, UUID toAgentID, int amount, string text)
{
}
}
public enum TransactionType : int