chore: added Engine class library to include all projects

This commit is contained in:
2025-03-29 21:59:36 +03:00
parent f9785462b0
commit 82705ba378
2 changed files with 28 additions and 0 deletions

16
Engine/Engine.csproj Normal file
View File

@@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Engine.Core\Engine.Core.csproj" />
<ProjectReference Include="..\Engine.Systems\Engine.Systems.csproj" />
<ProjectReference Include="..\Engine.Physics2D\Engine.Physics2D.csproj" />
<ProjectReference Include="..\Engine.Input\Engine.Input.csproj" />
</ItemGroup>
</Project>