mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-27 22:23:03 +08:00
23 lines
429 B
Java
23 lines
429 B
Java
|
package emu.grasscutter.game.dungeons;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public class DungeonDrop {
|
||
|
private int dungeonId;
|
||
|
private List<DungeonDropEntry> drops;
|
||
|
|
||
|
public int getDungeonId() {
|
||
|
return dungeonId;
|
||
|
}
|
||
|
public void setDungeonId(int dungeonId) {
|
||
|
this.dungeonId = dungeonId;
|
||
|
}
|
||
|
|
||
|
public List<DungeonDropEntry> getDrops() {
|
||
|
return drops;
|
||
|
}
|
||
|
public void setDrops(List<DungeonDropEntry> drops) {
|
||
|
this.drops = drops;
|
||
|
}
|
||
|
}
|