aboutsummaryrefslogtreecommitdiffstats
path: root/board.rb
diff options
context:
space:
mode:
Diffstat (limited to 'board.rb')
-rw-r--r--board.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/board.rb b/board.rb
index 19fa63b..9481d45 100644
--- a/board.rb
+++ b/board.rb
@@ -1,4 +1,12 @@
class Board
+ def initialize
+ @board = [
+ ['.', '.', '.'],
+ ['.', '.', '.'],
+ ['.', '.', '.']
+ ]
+ end
+
def render
puts "...\n" * 3
end