public Game() { field = new Field(); border = new BorderField(field.Rows, field.Columns, '+'); cursor = new Cursor(); step = new CountStep(); show = new ShowField(field); }
public StartGame(Field field, CountStep step) { this.field = field; show = new ShowField(field); this.step = step; }