package cz.jzitnik.game; import cz.jzitnik.game.ui.CraftingTable; public class GameStates { public CraftingTable craftingTable; public GameStates(Game game) { craftingTable = new CraftingTable(game); } }