Skip to content

Commit

Permalink
Remove explicit interface implementations from PageIterable and Worke…
Browse files Browse the repository at this point in the history
…rIterable
  • Loading branch information
BeanCheeseBurrito committed Jul 31, 2024
1 parent fd38c44 commit c2eb682
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions src/Flecs.NET/Core/PageIterable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,43 +150,43 @@ public WorkerIterable Worker(int index, int count)
}

/// <inheritdoc cref="IIterable.SetVar(int, ulong)"/>
IterIterable IIterable.SetVar(int varId, ulong value)
public IterIterable SetVar(int varId, ulong value)
{
return Iter().SetVar(varId, value);
}

/// <inheritdoc cref="IIterable.SetVar(string, ulong)"/>
IterIterable IIterable.SetVar(string name, ulong value)
public IterIterable SetVar(string name, ulong value)
{
return Iter().SetVar(name, value);
}

/// <inheritdoc cref="IIterable.SetVar(string, ecs_table_t*)"/>
IterIterable IIterable.SetVar(string name, ecs_table_t* value)
public IterIterable SetVar(string name, ecs_table_t* value)
{
return Iter().SetVar(name, value);
}

/// <inheritdoc cref="IIterable.SetVar(string, ecs_table_range_t)"/>
IterIterable IIterable.SetVar(string name, ecs_table_range_t value)
public IterIterable SetVar(string name, ecs_table_range_t value)
{
return Iter().SetVar(name, value);
}

/// <inheritdoc cref="IIterable.SetVar(string, Table)"/>
IterIterable IIterable.SetVar(string name, Table value)
public IterIterable SetVar(string name, Table value)
{
return Iter().SetVar(name, value);
}

/// <inheritdoc cref="IIterable.SetGroup(ulong)"/>
IterIterable IIterable.SetGroup(ulong groupId)
public IterIterable SetGroup(ulong groupId)
{
return Iter().SetGroup(groupId);
}

/// <inheritdoc cref="IIterable.SetGroup{T}()"/>
IterIterable IIterable.SetGroup<T>()
public IterIterable SetGroup<T>()
{
return Iter().SetGroup<T>();
}
Expand Down
14 changes: 7 additions & 7 deletions src/Flecs.NET/Core/WorkerIterable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,43 +150,43 @@ public WorkerIterable Worker(int index, int count)
}

/// <inheritdoc cref="IIterable.SetVar(int, ulong)"/>
IterIterable IIterable.SetVar(int varId, ulong value)
public IterIterable SetVar(int varId, ulong value)
{
return Iter().SetVar(varId, value);
}

/// <inheritdoc cref="IIterable.SetVar(string, ulong)"/>
IterIterable IIterable.SetVar(string name, ulong value)
public IterIterable SetVar(string name, ulong value)
{
return Iter().SetVar(name, value);
}

/// <inheritdoc cref="IIterable.SetVar(string, ecs_table_t*)"/>
IterIterable IIterable.SetVar(string name, ecs_table_t* value)
public IterIterable SetVar(string name, ecs_table_t* value)
{
return Iter().SetVar(name, value);
}

/// <inheritdoc cref="IIterable.SetVar(string, ecs_table_range_t)"/>
IterIterable IIterable.SetVar(string name, ecs_table_range_t value)
public IterIterable SetVar(string name, ecs_table_range_t value)
{
return Iter().SetVar(name, value);
}

/// <inheritdoc cref="IIterable.SetVar(string, Table)"/>
IterIterable IIterable.SetVar(string name, Table value)
public IterIterable SetVar(string name, Table value)
{
return Iter().SetVar(name, value);
}

/// <inheritdoc cref="IIterable.SetGroup(ulong)"/>
IterIterable IIterable.SetGroup(ulong groupId)
public IterIterable SetGroup(ulong groupId)
{
return Iter().SetGroup(groupId);
}

/// <inheritdoc cref="IIterable.SetGroup{T}()"/>
IterIterable IIterable.SetGroup<T>()
public IterIterable SetGroup<T>()
{
return Iter().SetGroup<T>();
}
Expand Down

0 comments on commit c2eb682

Please sign in to comment.