class RPG::Class::Learning
Public Class Methods
new(hash)
click to toggle source
# File lib/rmxp_extractor/classnames.rb, line 782 def initialize(hash) @level = hash["level"] @skill_id = hash["skill_id"] end
Public Instance Methods
hash()
click to toggle source
# File lib/rmxp_extractor/classnames.rb, line 787 def hash dump = { level: @level, skill_id: @skill_id, } end