Method: Othello::BoardView#each_square

Defined in:
sample/tcltklib/sample2.rb

#each_squareObject



316
317
318
319
320
321
322
# File 'sample/tcltklib/sample2.rb', line 316

def each_square
   @squares.each do |rows|
      rows.each do |square|
         yield(square)
      end
   end
end