UGCProjects/Counterattack/Script/gamemode/Action_SendEvent.lua

16 lines
278 B
Lua
Raw Normal View History

2025-01-04 23:00:19 +08:00
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