RPG::System::Terms

The data class for terminology.

Superclass

Referrer

Attributes

basic

The basic status. A string array with the following subscripts:

params

Parameters. A string array with the following subscripts:

etypes

The equipment type. A string array with the following subscripts:

commands

Commands. A string array with the following subscripts:

Definition

class RPG::System::Terms
  def initialize
    @basic = Array.new(8) {''}
    @params = Array.new(8) {''}
    @etypes = Array.new(5) {''}
    @commands = Array.new(23) {''}
  end
  attr_accessor :basic
  attr_accessor :params
  attr_accessor :etypes
  attr_accessor :commands
end