blob: c22bf161add63b5c1cdd670b53ab17b7fa966a0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---@class cc.EventCustom :cc.Event
local EventCustom={ }
cc.EventCustom=EventCustom
---* Gets event name.<br>
---* return The name of the event.
---@return string
function EventCustom:getEventName () end
---* Constructor.<br>
---* param eventName A given name of the custom event.<br>
---* js ctor
---@param eventName string
---@return self
function EventCustom:EventCustom (eventName) end
|