UGCProjects/GZJ/Script/gamemode/Action_SendCustomEvent.lua
2025-01-08 22:46:12 +08:00

11 lines
207 B
Lua

local Action_SendCustomEvent = {
EventName = "",
}
function Action_SendCustomEvent:Execute(...)
UGCGameSystem.SendModeCustomEvent(self.EventName)
return true
end
return Action_SendCustomEvent;