blob: deb0b9e9fa31348211a1b50f91367d048c105089 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---@class ccui.RichElementNewLine :ccui.RichElement
local RichElementNewLine={ }
ccui.RichElementNewLine=RichElementNewLine
---* brief Create a RichElementNewLine with various arguments.<br>
---* param tag A integer tag value.<br>
---* param color A color in Color3B.<br>
---* param opacity A opacity in GLubyte.<br>
---* return A RichElementNewLine instance.
---@param tag int
---@param color color3b_table
---@param opacity unsigned_char
---@return self
function RichElementNewLine:create (tag,color,opacity) end
---* brief Default constructor.<br>
---* js ctor<br>
---* lua new
---@return self
function RichElementNewLine:RichElementNewLine () end
|