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.



1342
1343
1344
1345
1346
1347
# File 'lib/R3EXS/RGSS3.rb', line 1342

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.



1349
1350
1351
# File 'lib/R3EXS/RGSS3.rb', line 1349

def basic
  @basic
end

#commandsObject

Returns the value of attribute commands.



1352
1353
1354
# File 'lib/R3EXS/RGSS3.rb', line 1352

def commands
  @commands
end

#etypesObject

Returns the value of attribute etypes.



1351
1352
1353
# File 'lib/R3EXS/RGSS3.rb', line 1351

def etypes
  @etypes
end

#paramsObject

Returns the value of attribute params.



1350
1351
1352
# File 'lib/R3EXS/RGSS3.rb', line 1350

def params
  @params
end