class SmashRuby::Set

Attributes

player_one[R]
player_two[R]
tournament[R]
winner[R]

Public Class Methods

new(player_one, player_two, tournament) click to toggle source
# File lib/smash_ruby/set.rb, line 5
def initialize(player_one, player_two, tournament)
  @player_one = player_one
  @player_two = player_two
  @tournament = tournament
end