uncommited changes

This commit is contained in:
2024-12-26 16:02:30 +01:00
parent bfb19ab7c1
commit dde3c27eb0
10 changed files with 154 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
from typing import List
from .construct_serialized import ConstructSerialized
class ConstructLevel:
Name : str
Description : str
Objects : List[ConstructSerialized]

View File

@@ -0,0 +1,13 @@
class SVector3:
x : float
y : float
z : float
class ConstructSerialized:
Id : int
Variant : int
Position : SVector3
Rotation : SVector3
Width : float
Height : float
Properties : int