wip: Serialization Game Manager

This commit is contained in:
2024-02-10 20:02:38 +03:00
parent 2f6fecdd78
commit 4c04e3d02f
6 changed files with 162 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
using System.Collections.Generic;
namespace Engine.Serialization.DTOs;
internal record struct GameManagerDTO(
string ClassType,
List<GameObjectDTO> GameObjects
);