public CStaticMeshComponent(string guid, string meshPath, Vector3 pos, Vector3 rot, Vector3 scale)
 {
     GUID                 = guid;
     _transform           = new Transform(pos, rot, scale);
     _properties          = new Propeties();
     _properties.FilePath = meshPath;
 }
 public CStaticMeshComponent(string guid, string meshPath)
 {
     GUID                 = guid;
     _transform           = new Transform();
     _properties          = new Propeties();
     _properties.FilePath = meshPath;
 }