![JAR search and dependency download from the Maven repository](/logo.png)
emu.grasscutter.game.shop.ShopTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grasscutter Show documentation
Show all versions of grasscutter Show documentation
A server software reimplementation for an anime game.
The newest version!
package emu.grasscutter.game.shop;
import java.util.ArrayList;
import java.util.List;
public class ShopTable {
private int shopId;
private List items = new ArrayList<>();
public int getShopId() {
return shopId;
}
public void setShopId(int shopId) {
this.shopId = shopId;
}
public List getItems() {
return items;
}
public void setItems(List items) {
this.items = items;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy