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.



1003
1004
1005
1006
1007
# File 'lib/R3EXS/RGSS3.rb', line 1003

def initialize
    @level    = 1
    @skill_id = 1
    @note     = ''
end

Instance Attribute Details

#levelObject

Returns the value of attribute level.



1009
1010
1011
# File 'lib/R3EXS/RGSS3.rb', line 1009

def level
  @level
end

#noteObject

Returns the value of attribute note.



1011
1012
1013
# File 'lib/R3EXS/RGSS3.rb', line 1011

def note
  @note
end

#skill_idObject

Returns the value of attribute skill_id.



1010
1011
1012
# File 'lib/R3EXS/RGSS3.rb', line 1010

def skill_id
  @skill_id
end