WIP - Spout custom tool support

This commit is contained in:
GJ
2012-05-31 16:02:11 -04:00
parent c2d1909379
commit 41e9bd3cb5
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,21 @@
package com.gmail.nossr50.api;
import java.util.ArrayList;
import java.util.List;
import org.getspout.spoutapi.inventory.SpoutItemStack;
public class SpoutToolsAPI {
public static List<SpoutItemStack> spoutSwords = new ArrayList<SpoutItemStack>();
/**
* Add a custom Spout sword to mcMMO for XP gain & ability use.
* </br>
* This function is designed for API usage.
*
* @param spoutSword The sword to add
*/
public void addCustomSword(SpoutItemStack spoutSword) {
spoutSwords.add(spoutSword);
}
}