lib/games/tictactoe/player.rb in games_bfox-0.3.0 vs lib/games/tictactoe/player.rb in games_bfox-0.4.0
- old
+ new
@@ -5,7 +5,11 @@
attr_accessor :value
def post_initialize(args = {})
@value = args.fetch(:value, "X")
end
+
+ def make_move
+ raise 'Called abstract method: make_move'
+ end
end
end
\ No newline at end of file