26 lines
818 B
C#
Raw Normal View History

using UnityEngine;
public class Press : BasicMachine
{
2020-09-05 18:39:40 -04:00
// Called by unity engine on start up to initialize variables
public new void Start()
{
base.Start();
recipes = new BasicMachineRecipe[]
{
new BasicMachineRecipe("Copper Ingot", "Copper Plate"),
new BasicMachineRecipe("Iron Ingot", "Iron Plate"),
new BasicMachineRecipe("Tin Ingot", "Tin Plate"),
new BasicMachineRecipe("Bronze Ingot", "Bronze Plate"),
new BasicMachineRecipe("Steel Ingot", "Steel Plate"),
new BasicMachineRecipe("Aluminum Ingot", "Aluminum Plate"),
new BasicMachineRecipe("Regolith", "Brick")
};
}
// Called once per frame by unity engine
public new void Update()
2020-08-08 23:45:20 -04:00
{
base.Update();
2020-08-08 23:45:20 -04:00
}
}