9 lines
173 B
C#
9 lines
173 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Engine.Serialization.DTOs;
|
|
|
|
internal record struct GameManagerDTO(
|
|
string ClassType,
|
|
List<GameObjectDTO> GameObjects
|
|
);
|