aboutsummaryrefslogtreecommitdiffstats
path: root/main.rb
diff options
context:
space:
mode:
Diffstat (limited to 'main.rb')
-rw-r--r--main.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.rb b/main.rb
index ad9eb72..dedf9f7 100644
--- a/main.rb
+++ b/main.rb
@@ -2,8 +2,8 @@ require_relative 'board'
require_relative 'player'
board = Board.new
-player_1 = Player.new('X', board)
-player_2 = Player.new('O', board)
+player_1 = Player.new(Player::INSIGNIAS[:x], board)
+player_2 = Player.new(Player::INSIGNIAS[:o], board)
board.current_player = player_1
until board.winner