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

12 lines
240 B
C#

using System.Collections.Generic;
namespace Engine.Serialization.DTOs;
internal record struct GameObjectDTO(
string Id,
string Name,
TransformDTO Transform,
List<BehaviourDTO> Behaviours,
StateEnableDTO StateEnable
);