diff options
author | Melanie Thielker | 2010-07-02 04:51:31 +0200 |
---|---|---|
committer | Melanie | 2010-07-02 04:45:03 +0100 |
commit | fda9d7b75e88f8308f5a05ae8f5476869e675a0b (patch) | |
tree | 935e4784c9df3df93ee52629573a4dc6c2942072 /OpenSim/Framework | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC_OLD-fda9d7b75e88f8308f5a05ae8f5476869e675a0b.zip opensim-SC_OLD-fda9d7b75e88f8308f5a05ae8f5476869e675a0b.tar.gz opensim-SC_OLD-fda9d7b75e88f8308f5a05ae8f5476869e675a0b.tar.bz2 opensim-SC_OLD-fda9d7b75e88f8308f5a05ae8f5476869e675a0b.tar.xz |
Remove GetEconomyData and the economy data structure (unused)
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IMoneyModule.cs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/OpenSim/Framework/IMoneyModule.cs b/OpenSim/Framework/IMoneyModule.cs index 3480960..17e74a0 100644 --- a/OpenSim/Framework/IMoneyModule.cs +++ b/OpenSim/Framework/IMoneyModule.cs | |||
@@ -43,27 +43,6 @@ namespace OpenSim.Framework | |||
43 | bool AmountCovered(IClientAPI client, int amount); | 43 | bool AmountCovered(IClientAPI client, int amount); |
44 | void ApplyCharge(UUID agentID, int amount, string text); | 44 | void ApplyCharge(UUID agentID, int amount, string text); |
45 | 45 | ||
46 | EconomyData GetEconomyData(); | ||
47 | |||
48 | event ObjectPaid OnObjectPaid; | 46 | event ObjectPaid OnObjectPaid; |
49 | } | 47 | } |
50 | |||
51 | public struct EconomyData | ||
52 | { | ||
53 | public int ObjectCapacity; | ||
54 | public int ObjectCount; | ||
55 | public int PriceEnergyUnit; | ||
56 | public int PriceGroupCreate; | ||
57 | public int PriceObjectClaim; | ||
58 | public float PriceObjectRent; | ||
59 | public float PriceObjectScaleFactor; | ||
60 | public int PriceParcelClaim; | ||
61 | public float PriceParcelClaimFactor; | ||
62 | public int PriceParcelRent; | ||
63 | public int PricePublicObjectDecay; | ||
64 | public int PricePublicObjectDelete; | ||
65 | public int PriceRentLight; | ||
66 | public int PriceUpload; | ||
67 | public int TeleportMinPrice; | ||
68 | } | ||
69 | } | 48 | } |