6 lines
131 B
Ruby
6 lines
131 B
Ruby
module BoardBase
|
|
def check_for_winner
|
|
fail NotImplementedError, "Board must implement a 'check_for_winner' method"
|
|
end
|
|
end
|