Created
August 6, 2018 06:34
-
-
Save BeauNouvelle/7a7e2327da2f64042243f02c4cfb5524 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public convenience init(worldSize: Int, cellSize: Int) { | |
let frame = CGRect(x: 0, y: 0, width: worldSize * cellSize, height: worldSize * cellSize) | |
self.init(frame: frame) | |
self.world = World(size: worldSize) | |
self.cellSize = cellSize | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment