Class: RPG::System::Terms
- Inherits:
-
Object
- Object
- RPG::System::Terms
- Defined in:
- lib/rpg/system/terms.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.
4 5 6 7 8 9 |
# File 'lib/rpg/system/terms.rb', line 4 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.
10 11 12 |
# File 'lib/rpg/system/terms.rb', line 10 def basic @basic end |
#commands ⇒ Object
Returns the value of attribute commands.
13 14 15 |
# File 'lib/rpg/system/terms.rb', line 13 def commands @commands end |
#etypes ⇒ Object
Returns the value of attribute etypes.
12 13 14 |
# File 'lib/rpg/system/terms.rb', line 12 def etypes @etypes end |
#params ⇒ Object
Returns the value of attribute params.
11 12 13 |
# File 'lib/rpg/system/terms.rb', line 11 def params @params end |