diff --git a/src/EntityComponentReader.cs b/src/EntityComponentReader.cs index 82884ab..6ef1469 100644 --- a/src/EntityComponentReader.cs +++ b/src/EntityComponentReader.cs @@ -42,7 +42,7 @@ public abstract class EntityComponentReader return ref ComponentDepot.Get(entity.ID); } - protected ref readonly TComponent Get() where TComponent : struct + protected ref readonly TComponent GetSingleton() where TComponent : struct { return ref ComponentDepot.Get(); }