-- Compiled with roblox-ts v3.0.0 local TS = _G[script] local Destroyable = TS.import(script, TS.getModule(script, "@rbxts", "destroyable").out).default local BaseAction do local super = Destroyable BaseAction = setmetatable({}, { __tostring = function() return "BaseAction" end, __index = super, }) BaseAction.__index = BaseAction function BaseAction:constructor(...) super.constructor(self, ...) self.id = "default" self.processed = false self.callbacks = {} end end return { BaseAction = BaseAction, }