mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-02-07 02:26:43 +01:00
* Refactor a couple of iterators * Use side-effect instead of second iterator * Make World::onTick return shouldDelete instead of success * Replace Shop iterator with side effects * Scene * Clean up Expeditions * Refactor Expeditions * Clean up Expeditions, Player * Limit Expeditions by AR * Lombokify props Co-authored-by: AnimeGitB <AnimeGitB@bigblueball.in>
11 lines
235 B
Java
11 lines
235 B
Java
package emu.grasscutter.game.expedition;
|
|
|
|
import java.util.List;
|
|
|
|
import lombok.Getter;
|
|
|
|
public class ExpeditionRewardInfo {
|
|
@Getter private int expId;
|
|
@Getter private List<ExpeditionRewardDataList> expeditionRewardDataList;
|
|
}
|