Skip to content

Instantly share code, notes, and snippets.

@mikeebert
Created June 2, 2012 19:25
Show Gist options
  • Save mikeebert/2859657 to your computer and use it in GitHub Desktop.
Save mikeebert/2859657 to your computer and use it in GitHub Desktop.
require 'board'
class Game
attr_accesor :ui, :board
def initialize(ui)
@ui = ui
@board = Board.new(3)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment