From 5581eca81b960b2c157dc4d5ea4d53fd5b5b123c Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Wed, 16 Oct 2019 14:22:46 -0400 Subject: [PATCH] Fix board size --- TetrisKit/GameController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TetrisKit/GameController.swift b/TetrisKit/GameController.swift index 9e25f47..0e3c503 100644 --- a/TetrisKit/GameController.swift +++ b/TetrisKit/GameController.swift @@ -12,7 +12,7 @@ import Combine public class GameController: ObservableObject { public let width = 10 - public let height = 16 + public let height = 20 var state: GameState = .waitingForStart