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