IComponentManager API changes.

This commit is contained in:
Acruid
2020-07-29 15:49:44 -07:00
parent a7b2a1ad2f
commit a772b505ac
7 changed files with 15 additions and 31 deletions

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using BenchmarkDotNet.Attributes;
using Moq;
@@ -80,7 +80,7 @@ namespace Content.Benchmarks
{
var count = 0;
foreach (var _ in _componentManager.GetAllComponents<DummyComponent>())
foreach (var _ in _componentManager.EntityQuery<DummyComponent>())
{
count += 1;
}