Add simulation project scaffold

This commit is contained in:
2026-04-16 10:56:01 +02:00
parent 4c4089a57b
commit fc654f599d
150 changed files with 35757 additions and 12 deletions

View File

@@ -0,0 +1,16 @@
using SideScrollerGame.Sim.Math;
namespace SideScrollerGame.Sim.Tests;
public sealed class DeterministicMathSmokeTests
{
[Fact]
public void FixPointAverage_UsesSimulationMathTypes()
{
FixPoint16[] values = [new(1), new(2), new(3)];
var average = values.Average();
Assert.Equal(new(2), average);
}
}