Bundles in-flight work on the campaign/missions system (CampaignDef, MissionDef, TerrainPatch, TransformerDef, MissionChecker, CampaignLoader, FlavorBanner, transformer rules), plan files, and matching tests. Baseline commit so the upcoming automation testing harness lands on a clean tree.
10 lines
205 B
C#
10 lines
205 B
C#
namespace Chessistics.Engine.Model;
|
|
|
|
public record TransformerDef(
|
|
Coords Position,
|
|
string Name,
|
|
CargoType InputCargo,
|
|
int InputRequired,
|
|
CargoType OutputCargo,
|
|
int OutputAmount
|
|
);
|