Implementation of LootService

First steps
This commit is contained in:
CharonInferar
2014-04-07 23:49:51 +02:00
parent f70811f6b7
commit 06fe72e647
5 changed files with 215 additions and 2 deletions
+21
View File
@@ -0,0 +1,21 @@
package resources.objects.loot;
import java.util.ArrayList;
import java.util.List;
public class LootDrop {
private List<String> elements = new ArrayList<String>();
public LootDrop(){
}
public void addElement(String element){
elements.add(element);
}
public List<String> getElements(){
return elements;
}
}