class Tak::Player

Public Class Methods

new(name, color) click to toggle source
# File lib/tak/player.rb, line 3
def initialize(name, color)
  @name  = name
  @color = color
end