Chessistics/chessistics-engine/Model/ProductionDef.cs
Samuel Bouchet e6eaae43ab Initial commit: Chessistics prototype v0.3
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.
2026-04-10 14:58:03 +02:00

3 lines
127 B
C#

namespace Chessistics.Engine.Model;
public record ProductionDef(Coords Position, string Name, CargoType Cargo, int Interval);