class Demacia::Rune

Attributes

description[RW]
id[RW]
name[RW]
slot_id[RW]
tier[RW]

Public Class Methods

new(id, description, name, tier, slot_id) click to toggle source
# File lib/demacia/Rune.rb, line 5
def initialize(id, description, name, tier, slot_id)
        @id = id
        @name = name
        @tier = tier
        @description = description
        @slot_id = slot_id
end