EngineKit
Floor.h
1 
2 
3 @class Floor;
4 
5 
6 @protocol FloorExport <JSExport>
7 + (instancetype)create;
8 //
9 @property (nonatomic, strong) id position;
10 @property (nonatomic, strong) id rotation;
11 @property (nonatomic, strong) id scale;
12 //
13 @property (nonatomic, strong) id color;
14 //
15 + (instancetype)floor;
16 @end
17 
18 
24 @interface Floor : Shape <FloorExport>
30 + (instancetype)floor;
31 @end
Definition: Shape.h:10
instancetype floor()
Definition: Floor.m:8
Definition: Floor.h:6
Definition: Floor.h:24