14 lines
158 B
Ruby
14 lines
158 B
Ruby
class BoardBase
|
|
attr_accessor :turn
|
|
|
|
def initialize(turn = 1)
|
|
@turn = turn
|
|
end
|
|
|
|
def to_s
|
|
print "
|
|
Current turn: #{@turn}\n
|
|
"
|
|
end
|
|
end
|