class Sightstone::Talent

Class to represent a talent of a mastery page @attr [Numeric] id id of the mastery @attr [String] name of the mastery @attr [Numeric] rank rank of the mastery

Attributes

id[RW]
name[RW]
rank[RW]

Public Class Methods

new(data) click to toggle source
# File lib/sightstone/masterybook.rb, line 48
def initialize(data)
  @id = data['id']
  @name = data['name']
  @rank = data['rank']
end