bbuchalter/tictactoe_core

View on GitHub
lib/tictactoe/player/human.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'tictactoe/player'

module TicTacToe
  module Player
    class Human
      include ::TicTacToe::Player

      def human?
        true
      end
    end
  end
end