Add entities SerializationTest

This commit is contained in:
2025-12-21 13:07:59 +09:00
parent 00b4e82ded
commit 840cf7dd5a
13 changed files with 257 additions and 29 deletions

View File

@@ -98,9 +98,19 @@ public partial class EntityQueryTest : ITest
public struct Transform : IEnableableComponent
{
public float3 position;
public override string ToString()
{
return $"Position: {position}";
}
}
public struct Mesh : IComponent
{
public int index;
public override string ToString()
{
return $"Index: {index}";
}
}