summaryrefslogtreecommitdiff
path: root/src/com/pkrandom/pokemon/PickupItem.java
blob: 9b9068364417eaf4cb3a02fda7bdab89887acfc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.pkrandom.pokemon;

public class PickupItem {
    public int item;
    public int[] probabilities;

    public PickupItem(int item) {
        this.item = item;
        this.probabilities = new int[10];
    }
}