blob: ecc19937369da4acc1fdb3b069c6f2a12590c98b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---@class ccs.RotationFrame :ccs.Frame
local RotationFrame={ }
ccs.RotationFrame=RotationFrame
---*
---@param rotation float
---@return self
function RotationFrame:setRotation (rotation) end
---*
---@return float
function RotationFrame:getRotation () end
---*
---@return self
function RotationFrame:create () end
---*
---@return ccs.Frame
function RotationFrame:clone () end
---*
---@return self
function RotationFrame:RotationFrame () end
|