16 lines
274 B
Lua
16 lines
274 B
Lua
|
local Action_SendEvent =
|
||
|
{
|
||
|
SendEventName = "";
|
||
|
}
|
||
|
|
||
|
|
||
|
function Action_SendEvent:Execute()
|
||
|
UGCLogSystem.Log("Action_SendEvent:Execute SendEventName[%s]", self.SendEventName);
|
||
|
|
||
|
LuaQuickFireEvent(self.SendEventName, self);
|
||
|
|
||
|
return true;
|
||
|
end
|
||
|
|
||
|
|
||
|
return Action_SendEvent
|