Files
odin-project-solutions/common/BoardBase.rb
2023-05-29 22:37:51 -05:00

6 lines
131 B
Ruby

module BoardBase
def check_for_winner
fail NotImplementedError, "Board must implement a 'check_for_winner' method"
end
end