private void Awake() { brewUI = transform.parent.GetComponent <BrewUI>(); Empty = true; Item = null; UnlockItem(); }
public void StartBrew(uint product, BrewUI brewUI) { this.product = product; this.brewUI = brewUI; StartCoroutine(StartBrew()); }