Browse Source

remove wrong signatures

tags/2.7
sebas77 6 years ago
parent
commit
1d11777a8a
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      Svelto.Common
  2. +1
    -1
      Svelto.ECS/ExecuteOnEntitiesDB.cs
  3. +1
    -1
      Svelto.ECS/IEntitiesDB.cs

+ 1
- 1
Svelto.Common

@@ -1 +1 @@
Subproject commit 554875838f1743017981df428243bba80fe3ece1
Subproject commit 314da96ee379dea24b0cefe1aba43c9e6e71eb23

+ 1
- 1
Svelto.ECS/ExecuteOnEntitiesDB.cs View File

@@ -97,7 +97,7 @@ namespace Svelto.ECS.Internal

//-----------------------------------------------------------------------------------------------------------
public void ExecuteOnAllEntities<T>(ExclusiveGroup[] damageableGroups, AllEntitiesAction<T> action) where T : IEntityStruct
public void ExecuteOnAllEntities<T>(AllEntitiesAction<T> action) where T : IEntityStruct
{
var type = typeof(T);
FasterDictionary<int, ITypeSafeDictionary> dic;


+ 1
- 1
Svelto.ECS/IEntitiesDB.cs View File

@@ -66,7 +66,7 @@ namespace Svelto.ECS
/// <param name="damageableGroups"></param>
/// <param name="action"></param>
/// <typeparam name="T"></typeparam>
void ExecuteOnAllEntities<T>(ExclusiveGroup[] damageableGroups, AllEntitiesAction<T> action) where T : IEntityStruct;
void ExecuteOnAllEntities<T>(AllEntitiesAction<T> action) where T : IEntityStruct;
void ExecuteOnAllEntities<T, W>(ref W value, AllEntitiesAction<T, W> action) where T : IEntityStruct;
void ExecuteOnAllEntities<T>(ExclusiveGroup[] groups, EntitiesAction<T> action) where T : IEntityStruct;
void ExecuteOnAllEntities<T, W>(ExclusiveGroup[] groups, ref W value, EntitiesAction<T, W> action) where T : IEntityStruct;


Loading…
Cancel
Save