RPG::MoveCommand
Data class for the Move command.
Superclass
Referrer
Attributes
code
Move command code.
parameters
Array containing the Move command arguments. The contents vary for each command.
Definition
module RPG
class MoveCommand(code = 0, parameters = [])
def initialize
@code = code
@parameters = parameters
end
attr_accessor :code
attr_accessor :parameters
end
end
Last updated