local StepParent = require "game.events.event.parent" local SimpleMessageStep = StepParent:extend() function SimpleMessageStep:new(controller, args) SimpleMessageStep.super.new(self, controller, args) end function SimpleMessageStep:start() self.events.scene.assets.sfx[self.arguments.sfx]:play() end function SimpleMessageStep:update(dt) self:finish() end return SimpleMessageStep;