Class: RPG::System::Terms
- Inherits:
-
Object
- Object
- RPG::System::Terms
- Defined in:
- lib/R3EXS/RGSS3.rb
Instance Attribute Summary collapse
-
#basic ⇒ Object
Returns the value of attribute basic.
-
#commands ⇒ Object
Returns the value of attribute commands.
-
#etypes ⇒ Object
Returns the value of attribute etypes.
-
#params ⇒ Object
Returns the value of attribute params.
Instance Method Summary collapse
-
#initialize ⇒ Terms
constructor
A new instance of Terms.
Constructor Details
#initialize ⇒ Terms
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
#basic ⇒ Object
Returns the value of attribute basic.
1349 1350 1351 |
# File 'lib/R3EXS/RGSS3.rb', line 1349 def basic @basic end |
#commands ⇒ Object
Returns the value of attribute commands.
1352 1353 1354 |
# File 'lib/R3EXS/RGSS3.rb', line 1352 def commands @commands end |
#etypes ⇒ Object
Returns the value of attribute etypes.
1351 1352 1353 |
# File 'lib/R3EXS/RGSS3.rb', line 1351 def etypes @etypes end |
#params ⇒ Object
Returns the value of attribute params.
1350 1351 1352 |
# File 'lib/R3EXS/RGSS3.rb', line 1350 def params @params end |