Class: RPG::System::Terms

Inherits:
Object
  • Object
show all
Defined in:
lib/rpg/system/terms.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTerms

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

#basicObject

Returns the value of attribute basic.



10
11
12
# File 'lib/rpg/system/terms.rb', line 10

def basic
  @basic
end

#commandsObject

Returns the value of attribute commands.



13
14
15
# File 'lib/rpg/system/terms.rb', line 13

def commands
  @commands
end

#etypesObject

Returns the value of attribute etypes.



12
13
14
# File 'lib/rpg/system/terms.rb', line 12

def etypes
  @etypes
end

#paramsObject

Returns the value of attribute params.



11
12
13
# File 'lib/rpg/system/terms.rb', line 11

def params
  @params
end