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.
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
#basic ⇒ Object
Returns the value of attribute basic.
1327 1328 1329 |
# File 'lib/R3EXS/RGSS3.rb', line 1327 def basic @basic end |
#commands ⇒ Object
Returns the value of attribute commands.
1330 1331 1332 |
# File 'lib/R3EXS/RGSS3.rb', line 1330 def commands @commands end |
#etypes ⇒ Object
Returns the value of attribute etypes.
1329 1330 1331 |
# File 'lib/R3EXS/RGSS3.rb', line 1329 def etypes @etypes end |
#params ⇒ Object
Returns the value of attribute params.
1328 1329 1330 |
# File 'lib/R3EXS/RGSS3.rb', line 1328 def params @params end |