Class: RPG::Class::Learning
- Inherits:
-
Object
- Object
- RPG::Class::Learning
- Defined in:
- lib/R3EXS/RGSS3.rb
Instance Attribute Summary collapse
-
#level ⇒ Object
Returns the value of attribute level.
-
#note ⇒ Object
Returns the value of attribute note.
-
#skill_id ⇒ Object
Returns the value of attribute skill_id.
Instance Method Summary collapse
-
#initialize ⇒ Learning
constructor
A new instance of Learning.
Constructor Details
#initialize ⇒ Learning
Returns a new instance of Learning.
1025 1026 1027 1028 1029 |
# File 'lib/R3EXS/RGSS3.rb', line 1025 def initialize @level = 1 @skill_id = 1 @note = '' end |
Instance Attribute Details
#level ⇒ Object
Returns the value of attribute level.
1031 1032 1033 |
# File 'lib/R3EXS/RGSS3.rb', line 1031 def level @level end |
#note ⇒ Object
Returns the value of attribute note.
1033 1034 1035 |
# File 'lib/R3EXS/RGSS3.rb', line 1033 def note @note end |
#skill_id ⇒ Object
Returns the value of attribute skill_id.
1032 1033 1034 |
# File 'lib/R3EXS/RGSS3.rb', line 1032 def skill_id @skill_id end |