class RPG::System::Vehicle

Attributes

bgm[RW]
character_index[RW]
character_name[RW]
start_map_id[RW]
start_x[RW]
start_y[RW]

Public Class Methods

new() click to toggle source
# File lib/rgss3/rpg.rb, line 958
def initialize
  @character_name = ''
  @character_index = 0
  @bgm = RPG::BGM.new
  @start_map_id = 0
  @start_x = 0
  @start_y = 0
end