mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
18 lines
267 B
Java
18 lines
267 B
Java
package com.hbm.util;
|
|
|
|
import net.minecraft.util.WeightedRandom;
|
|
|
|
public class WeightedRandomGeneric<T> extends WeightedRandom.Item {
|
|
|
|
T item;
|
|
|
|
public WeightedRandomGeneric(T o, int weight) {
|
|
super(weight);
|
|
item = o;
|
|
}
|
|
|
|
public T get() {
|
|
return item;
|
|
}
|
|
}
|