package com.lucasdnd.ags.gameplay.market; /** * Products the player can Sell in the store * @author tulio * */ public interface Sellable { public void changeSellPrice(int priceChange); }