Class: RPG::System::Terms
- Inherits:
-
Object
- Object
- RPG::System::Terms
- Defined in:
- lib/rgss3/rpg.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.
976 977 978 979 980 981 |
# File 'lib/rgss3/rpg.rb', line 976 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.
982 983 984 |
# File 'lib/rgss3/rpg.rb', line 982 def basic @basic end |
#commands ⇒ Object
Returns the value of attribute commands.
985 986 987 |
# File 'lib/rgss3/rpg.rb', line 985 def commands @commands end |
#etypes ⇒ Object
Returns the value of attribute etypes.
984 985 986 |
# File 'lib/rgss3/rpg.rb', line 984 def etypes @etypes end |
#params ⇒ Object
Returns the value of attribute params.
983 984 985 |
# File 'lib/rgss3/rpg.rb', line 983 def params @params end |