Skip to content

Commit

Permalink
Updated to Myriad 17.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martindevans committed Jul 12, 2024
1 parent 94f2bcc commit c72bffa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion source/Ecs.CSharp.Benchmark/Ecs.CSharp.Benchmark.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PackageReference Include="Arch.System" Version="1.0.5" />
<PackageReference Include="Arch.System.SourceGenerator" Version="1.2.1" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0" PrivateAssets="all" />
<PackageReference Include="Myriad.ECS" Version="16.9.1" />
<PackageReference Include="Myriad.ECS" Version="17.0.0" />
<PackageReference Include="Roslynator.Analyzers" Version="4.10.0" PrivateAssets="all" />
<PackageReference Include="Roslynator.CodeAnalysis.Analyzers" Version="4.10.0" PrivateAssets="all" />
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.10.0" PrivateAssets="all" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void Execute(Entity entity, ref Component1 t0)
++t0.Value;
}

public void Execute(ReadOnlySpan<Entity> e, Span<Component1> t0)
public void Execute(ChunkHandle chunk, ReadOnlySpan<Entity> e, Span<Component1> t0)
{
for (int i = 0; i < t0.Length; i++)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void Execute(Entity entity, ref Component1 t0, ref Component2 t1, ref Com
t0.Value += t1.Value + t2.Value;
}

public void Execute(ReadOnlySpan<Entity> e, Span<Component1> t0, Span<Component2> t1, Span<Component3> t2)
public void Execute(ChunkHandle chunk, ReadOnlySpan<Entity> e, Span<Component1> t0, Span<Component2> t1, Span<Component3> t2)
{
for (int i = 0; i < t0.Length; i++)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void Execute(Entity entity, ref Component1 t0, ref Component2 t1)
t0.Value += t1.Value;
}

public void Execute(ReadOnlySpan<Entity> e, Span<Component1> t0, Span<Component2> t1)
public void Execute(ChunkHandle chunk, ReadOnlySpan<Entity> e, Span<Component1> t0, Span<Component2> t1)
{
for (int i = 0; i < t0.Length; i++)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void Execute(Entity entity, ref Component1 t0, ref Component2 t1)
t0.Value += t1.Value;
}

public void Execute(ReadOnlySpan<Entity> e, Span<Component1> t0, Span<Component2> t1)
public void Execute(ChunkHandle chunk, ReadOnlySpan<Entity> e, Span<Component1> t0, Span<Component2> t1)
{
for (int i = 0; i < t0.Length; i++)
{
Expand Down

0 comments on commit c72bffa

Please sign in to comment.