Class: BlackStone

Inherits:
Stone
  • Object
show all
Defined in:
lib/stone.rb

Instance Attribute Summary

Attributes inherited from Stone

#color

Instance Method Summary collapse

Methods inherited from Stone

#==, #empty?, #group, #liberties, #place_on_board, #remove_from_board, #to_coord, #to_s, #to_sgf, #to_str

Constructor Details

#initialize(x, y) ⇒ BlackStone

Returns a new instance of BlackStone.



77
78
79
80
# File 'lib/stone.rb', line 77

def initialize(x, y)
  super
  @color = :black
end