package Game; import java.util.HashMap; /** * Created by megatlantis on 28/01/14. */ public class Shop { GameLogic gl; static HashMap itemList = new HashMap(); public Shop(GameLogic gl) { this.gl = gl; } public void PlayerBuyItem(Byte i, Player player) { } static{ itemList.put(1,ItemBoots.class); } }