feat: added basic state machine system & Engine.Systems class library

This commit is contained in:
2025-03-29 21:40:30 +03:00
parent b9ee1ec232
commit 5c3e0f6581
6 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<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" />
</ItemGroup>
</Project>