Skip to content

Commit

Permalink
Updated Entity.cs
Browse files Browse the repository at this point in the history
Fixed an error preventing the solution from compiling due to Entity.cs.
  • Loading branch information
Brian-Hamlin-BCS committed Jan 4, 2023
1 parent 4edeee8 commit f1d743c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/engine/Stride.Engine/Engine/Entity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public Entity()
/// </summary>
/// <param name="name">The name to give to the entity</param>
public Entity(string name)
: this(Vector3.Zero, name)
: this(name, Vector3.Zero)
{
}

Expand Down

0 comments on commit f1d743c

Please sign in to comment.