2020-09-11 03:21:04 -04:00
|
|
|
|
public class BasicMachineRecipe
|
|
|
|
|
{
|
|
|
|
|
public string input;
|
|
|
|
|
public string output;
|
|
|
|
|
|
2020-09-16 21:40:25 -05:00
|
|
|
|
//! Single input and output recipe used for basic machines.
|
2020-09-11 03:21:04 -04:00
|
|
|
|
public BasicMachineRecipe(string input, string output)
|
|
|
|
|
{
|
|
|
|
|
this.input = input;
|
|
|
|
|
this.output = output;
|
|
|
|
|
}
|
|
|
|
|
}
|