refactor: Yaml serialization moved from Core to own project

This commit is contained in:
2025-05-01 17:51:21 +03:00
parent bd5eb432b7
commit 131203d578
35 changed files with 269 additions and 175 deletions

View File

@@ -0,0 +1,11 @@
using Syntriax.Engine.Core.Serialization;
using YamlDotNet.Serialization;
namespace Syntriax.Engine.Serializers.Yaml;
public interface IEngineTypeYamlConverter : IYamlTypeConverter
{
YamlSerializer Serializer { get; set; }
EntityRegistry EntityRegistry { get; set; }
}