fix: file & type name mismatches fixed

This commit is contained in:
2026-03-08 15:12:16 +03:00
parent 51534606c8
commit 105b87da3a
34 changed files with 32 additions and 32 deletions

View File

@@ -8,7 +8,7 @@ using YamlDotNet.Serialization;
namespace Engine.Serializers.Yaml;
public class Matrix4x4Converter : EngineTypeYamlSerializerBase<Matrix4x4>
public class Matrix4x4Converter : EngineTypeYamlConverterBase<Matrix4x4>
{
private static readonly int SUBSTRING_START_LENGTH = nameof(Matrix4x4).Length + 1;