From ed35a605fc83a42f40d849693685c5cb6d0aafbf Mon Sep 17 00:00:00 2001 From: Maddy Thorson Date: Wed, 10 Feb 2021 22:16:55 -0800 Subject: [PATCH] Entity.All tweak --- src/Core/Entity.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Entity.bf b/src/Core/Entity.bf index d403fa6..218522a 100644 --- a/src/Core/Entity.bf +++ b/src/Core/Entity.bf @@ -75,7 +75,7 @@ namespace Strawberry return null; } - public List All(List into) where T : Component + public ICollection All(ICollection into) where T : Component { for (let c in components) if (c is T)