11 lines
207 B
Lua
11 lines
207 B
Lua
|
local Action_SendCustomEvent = {
|
||
|
EventName = "",
|
||
|
}
|
||
|
|
||
|
function Action_SendCustomEvent:Execute(...)
|
||
|
UGCGameSystem.SendModeCustomEvent(self.EventName)
|
||
|
|
||
|
return true
|
||
|
end
|
||
|
|
||
|
return Action_SendCustomEvent;
|