UGCProjects/FX_Preview/Script/gamemode/Action_SendEvent.lua
2025-01-09 13:36:39 +08:00

16 lines
278 B
Lua

local Action_SendEvent =
{
SendEventName = "";
}
function Action_SendEvent:Execute()
print(string.format("Action_SendEvent:Execute SendEventName[%s]", self.SendEventName));
LuaQuickFireEvent(self.SendEventName, self);
return true;
end
return Action_SendEvent