001    package jagafa;
002    
003    import jagafa.scores.SchieberScoreTable;
004    import jagafa.scores.ScoreTable;
005    
006    public class Game {
007    
008            /**
009             * @param args
010             */
011            public static void main(String[] args) {
012                    ScoreTable scoreTable = new SchieberScoreTable(2000);
013    
014                    
015    
016                    GameController game = new GameController();
017                    game.startGame(scoreTable);
018    
019            }
020    
021            
022    
023    }