Quantum-Engineering/BasicMachineRecipe.cs
2020-09-16 21:40:25 -05:00

12 lines
283 B
C#

public class BasicMachineRecipe
{
public string input;
public string output;
//! Single input and output recipe used for basic machines.
public BasicMachineRecipe(string input, string output)
{
this.input = input;
this.output = output;
}
}