RPG::Class::Learning

The data class for a class's [Skills to Learn].

Superclass

Referrer

Referrer

level

The skill's level.

skill_id

The ID of the skill to learn.

note

The text of the note.

Definition

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