Add needed dummy to sample money
parent
3f93db8371
commit
c79f79fc84
|
@ -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; }
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue