DropInfo.java 301 Bytes
Newer Older
Kengxxiao's avatar
Kengxxiao committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package emu.grasscutter.game.drop;

import java.util.List;

public class DropInfo {
    public int getMonsterId() {
        return monsterId;
    }

    public List<DropData> getDropDataList() {
        return dropDataList;
    }

    private int monsterId;
    private List<DropData> dropDataList;
}