Class: RPG::System::Terms
- Inherits:
-
Object
- Object
- RPG::System::Terms
- Defined in:
- lib/rpg/system/terms.rb
Instance Attribute Summary (collapse)
-
- (Object) basic
Returns the value of attribute basic.
-
- (Object) commands
Returns the value of attribute commands.
-
- (Object) etypes
Returns the value of attribute etypes.
-
- (Object) params
Returns the value of attribute params.
Instance Method Summary (collapse)
-
- (Terms) initialize
constructor
A new instance of Terms.
Constructor Details
- (Terms) initialize
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
- (Object) basic
Returns the value of attribute basic
10 11 12 |
# File 'lib/rpg/system/terms.rb', line 10 def basic @basic end |
- (Object) commands
Returns the value of attribute commands
13 14 15 |
# File 'lib/rpg/system/terms.rb', line 13 def commands @commands end |
- (Object) etypes
Returns the value of attribute etypes
12 13 14 |
# File 'lib/rpg/system/terms.rb', line 12 def etypes @etypes end |
- (Object) params
Returns the value of attribute params
11 12 13 |
# File 'lib/rpg/system/terms.rb', line 11 def params @params end |