Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerfulBacon committed Aug 29, 2023
2 parents 28212f6 + a60c480 commit cc47324
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CorgECS.Tests/CorgECS.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@
<PackageReference Include="coverlet.collector" Version="3.1.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\CorgECS.csproj" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions CorgECS.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<TargetFramework>netcoreapp3.1</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;ARM32;ARM64</Platforms>
<Authors>PowerfulBacon</Authors>
Expand Down
2 changes: 1 addition & 1 deletion Worlds/World.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public T GetEntitySystem<T>()
}
else
{
T createdSystem = new();
T createdSystem = new T();
createdSystem.JoinWorld(this);
EntitySystems.Add(typeof(T), createdSystem);
return createdSystem;
Expand Down

0 comments on commit cc47324

Please sign in to comment.