Sha256: 0b31c0c4372def69e05c69300de9ca9997136f06d4b59b484d797810dfb88436
Contents?: true
Size: 496 Bytes
Versions: 5
Compression:
Stored size: 496 Bytes
Contents
require 'lol/model' module Lol class Player < Lol::Model # @!attribute [r] champion_id # @return [Fixnum] Champion Id associated with player attr_reader :champion_id # @!attribute [r] summoner_id # @return [Fixnum] Summoner Id associated with player attr_reader :summoner_id # @!attribute [r] team_id # @return [Fixnum] Team Id associated with player attr_reader :team_id private attr_writer :champion_id, :summoner_id, :team_id end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
ruby-lol-0.9.4 | lib/lol/player.rb |
ruby-lol-0.9.3 | lib/lol/player.rb |
ruby-lol-0.9.1 | lib/lol/player.rb |
ruby-lol-0.0.7 | lib/lol/player.rb |
ruby-lol-0.0.6 | lib/lol/player.rb |