RPG::Class::Learning

职业[技能]的数据类。

超类

调用者

属性

level

等级。

skill_id

习得技能的 ID。

note

备注。

定义

class RPG::Class::Learning
  def initialize
    @level = 1
    @skill_id = 1
    @note = ''
  end
  attr_accessor :level
  attr_accessor :skill_id
  attr_accessor :note
end