Skip to content

Instantly share code, notes, and snippets.

View ashfn's full-sized avatar
🇬🇧

Asher ashfn

🇬🇧
View GitHub Profile
import java.util.*;
public class LootDecider<T> {
private final List<LootItem<T>> lootItems;
private double totalPercentage;
public LootDecider() {
lootItems = new ArrayList<>();
totalPercentage = 0.0;
}