Class: RPG::System::Terms

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTerms

Returns a new instance of Terms.



1320
1321
1322
1323
1324
1325
# File 'lib/R3EXS/RGSS3.rb', line 1320

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.



1327
1328
1329
# File 'lib/R3EXS/RGSS3.rb', line 1327

def basic
  @basic
end

#commandsObject

Returns the value of attribute commands.



1330
1331
1332
# File 'lib/R3EXS/RGSS3.rb', line 1330

def commands
  @commands
end

#etypesObject

Returns the value of attribute etypes.



1329
1330
1331
# File 'lib/R3EXS/RGSS3.rb', line 1329

def etypes
  @etypes
end

#paramsObject

Returns the value of attribute params.



1328
1329
1330
# File 'lib/R3EXS/RGSS3.rb', line 1328

def params
  @params
end