20 lines
288 B
Java
20 lines
288 B
Java
package mineplex.game.clans.items.generation;
|
|
|
|
public class Weight<T>
|
|
{
|
|
|
|
private int _weight;
|
|
public int getWeight() { return _weight; }
|
|
|
|
private T _value;
|
|
public T getValue() { return _value; }
|
|
|
|
public Weight(int weight, T value)
|
|
{
|
|
_weight = weight;
|
|
_value = value;
|
|
}
|
|
|
|
|
|
}
|