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.
1003 1004 1005 1006 1007 |
# File 'lib/R3EXS/RGSS3.rb', line 1003 def initialize @level = 1 @skill_id = 1 @note = '' end |
Instance Attribute Details
#level ⇒ Object
Returns the value of attribute level.
1009 1010 1011 |
# File 'lib/R3EXS/RGSS3.rb', line 1009 def level @level end |
#note ⇒ Object
Returns the value of attribute note.
1011 1012 1013 |
# File 'lib/R3EXS/RGSS3.rb', line 1011 def note @note end |
#skill_id ⇒ Object
Returns the value of attribute skill_id.
1010 1011 1012 |
# File 'lib/R3EXS/RGSS3.rb', line 1010 def skill_id @skill_id end |