Browse Source

fixed mistake introduced with the last commit

tags/Rel1
sebas77 6 years ago
parent
commit
298a0e6cad
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ECS/EnginesRoot.cs

+ 1
- 1
ECS/EnginesRoot.cs View File

@@ -165,7 +165,7 @@ namespace Svelto.ECS
{
var interfaceType = implementedInterfaces[index];

if (interfaceType.IsAssignableFrom(type) == false)
if (type.IsAssignableFrom(interfaceType) == false)
continue;
#if !NETFX_CORE



Loading…
Cancel
Save