mirror of
https://e.coding.net/circlecloud/Residence.git
synced 2025-11-24 21:46:16 +00:00
move src path and modify config file...
Signed-off-by: 502647092 <jtb1@163.com>
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package com.bekvon.bukkit.residence.economy;
|
||||
|
||||
public interface EconomyInterface {
|
||||
public double getBalance(String playerName);
|
||||
public boolean canAfford(String playerName, double amount);
|
||||
public boolean add(String playerName, double amount);
|
||||
public boolean subtract(String playerName, double amount);
|
||||
public boolean transfer(String playerFrom, String playerTo, double amount);
|
||||
public String getName();
|
||||
}
|
||||
Reference in New Issue
Block a user