RPG::EventCommand
Data class for the Event command.
Last updated
Data class for the Event command.
Last updated
module RPG
class EventCommand
def initialize(code = 0, indent = 0, parameters = [])
@code = code
@indent = indent
@parameters = parameters
end
attr_accessor :code
attr_accessor :indent
attr_accessor :parameters
end
end