Skip to content

Instantly share code, notes, and snippets.

@BeauNouvelle
Created August 6, 2018 06:34
Show Gist options
  • Save BeauNouvelle/7a7e2327da2f64042243f02c4cfb5524 to your computer and use it in GitHub Desktop.
Save BeauNouvelle/7a7e2327da2f64042243f02c4cfb5524 to your computer and use it in GitHub Desktop.
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