package com.lucasdnd.ags.gameplay.market; /** * Products the Player can control the Rent Price * @author tulio * */ public interface Rentable { public void changeRentPrice(int priceChange); }