Syntriax.Engine/Engine.Serialization/DTOs/GameObjectDTO.cs

11 lines
240 B
C#
Raw Normal View History

2024-02-09 17:50:39 +03:00
namespace Engine.Serialization.DTOs;
internal record struct GameObjectDTO(
2024-02-10 17:10:02 +03:00
string ClassType,
2024-02-09 17:50:39 +03:00
string Id,
string Name,
TransformDTO Transform,
2024-02-10 17:10:02 +03:00
BehaviourControllerDTO BehaviourController,
2024-02-09 17:50:39 +03:00
StateEnableDTO StateEnable
);