13 lines
222 B
Python
13 lines
222 B
Python
|
class SVector3:
|
||
|
x : float
|
||
|
y : float
|
||
|
z : float
|
||
|
|
||
|
class ConstructSerialized:
|
||
|
Id : int
|
||
|
Variant : int
|
||
|
Position : SVector3
|
||
|
Rotation : SVector3
|
||
|
Width : float
|
||
|
Height : float
|
||
|
Properties : int
|