11 lines
205 B
C#
11 lines
205 B
C#
|
|
namespace Chessistics.Engine.Model;
|
||
|
|
|
||
|
|
public record TransformerDef(
|
||
|
|
Coords Position,
|
||
|
|
string Name,
|
||
|
|
CargoType InputCargo,
|
||
|
|
int InputRequired,
|
||
|
|
CargoType OutputCargo,
|
||
|
|
int OutputAmount
|
||
|
|
);
|