class Bagel::Tennis::Point
Public Class Methods
new(timeframe:, score:, serve:, outcome:)
click to toggle source
# File lib/bagel/tennis/point.rb, line 10 def initialize(timeframe:, score:, serve:, outcome:) @timeframe = timeframe @score = score @serve = serve @outcome = outcome end