Class: RPG::System::Terms

Inherits:
Object
  • Object
show all
Defined in:
lib/rgss3/rpg.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTerms

Returns a new instance of Terms.



976
977
978
979
980
981
# File 'lib/rgss3/rpg.rb', line 976

def initialize
  @basic = Array.new(8) {''}
  @params = Array.new(8) {''}
  @etypes = Array.new(5) {''}
  @commands = Array.new(23) {''}
end

Instance Attribute Details

#basicObject

Returns the value of attribute basic.



982
983
984
# File 'lib/rgss3/rpg.rb', line 982

def basic
  @basic
end

#commandsObject

Returns the value of attribute commands.



985
986
987
# File 'lib/rgss3/rpg.rb', line 985

def commands
  @commands
end

#etypesObject

Returns the value of attribute etypes.



984
985
986
# File 'lib/rgss3/rpg.rb', line 984

def etypes
  @etypes
end

#paramsObject

Returns the value of attribute params.



983
984
985
# File 'lib/rgss3/rpg.rb', line 983

def params
  @params
end