Class: RPG::Class::Learning

Inherits:
Object
  • Object
show all
Defined in:
lib/R3EXS/RGSS3.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeLearning

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

#levelObject

Returns the value of attribute level.



1031
1032
1033
# File 'lib/R3EXS/RGSS3.rb', line 1031

def level
  @level
end

#noteObject

Returns the value of attribute note.



1033
1034
1035
# File 'lib/R3EXS/RGSS3.rb', line 1033

def note
  @note
end

#skill_idObject

Returns the value of attribute skill_id.



1032
1033
1034
# File 'lib/R3EXS/RGSS3.rb', line 1032

def skill_id
  @skill_id
end