mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-04 05:16:21 -04:00
Implementation of LootService
First steps
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user