Black box sim engine (commands in, events out) with 3 piece types (Rook, Bishop, Knight), cargo transfer system with social status priority, collision detection, and victory/defeat conditions. 57 tests covering rules, simulation, loading, and solvability. Godot 4 presentation layer scaffolding.
15 lines
484 B
XML
15 lines
484 B
XML
<Project Sdk="Godot.NET.Sdk/4.6.2">
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<RootNamespace>Chessistics</RootNamespace>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="chessistics-engine/**" />
|
|
<Compile Remove="chessistics-tests/**" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="chessistics-engine\Chessistics.Engine.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|