All Downloads are FREE. Search and download functionalities are using the official Maven repository.

emu.grasscutter.game.shop.ShopTable Maven / Gradle / Ivy

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