Skip to content

Commit

Permalink
+ fix ctor accessibility (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreakarasho authored Dec 9, 2022
1 parent c585362 commit a039eac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Arch/Core/CommandBuffer/CreationBuffer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public struct CreationBuffer
/// </summary>
/// <param name="world">The world this playbacks to.</param>
/// <param name="initialCapacity">The initial capacity, grows once it was reached.</param>
internal CreationBuffer(World world, int initialCapacity = 64)
public CreationBuffer(World world, int initialCapacity = 64)
{
World = world;
InitialCapacity = initialCapacity;
Expand Down
2 changes: 1 addition & 1 deletion Arch/Core/CommandBuffer/ModificationBuffer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ public struct ModificationBuffer : IDisposable
/// </summary>
/// <param name="world">The world this buffer playbacks to.</param>
/// <param name="capacity">The initial capcity, grows once it was reached.</param>
internal ModificationBuffer(World world, int capacity = 64)
public ModificationBuffer(World world, int capacity = 64)
{
World = world;
_sparseSet = new SparseSet(capacity);
Expand Down

0 comments on commit a039eac

Please sign in to comment.