The data class for the Move command.
Move command code.
An array containing the Move command's arguments. The contents vary for each command.
class RPG::MoveCommand def initialize(code = 0, parameters = []) @code = code @parameters = parameters end attr_accessor :code attr_accessor :parameters end