Inheritance: MonoBehaviour
Exemplo n.º 1
0
 // Start is called before the first frame update
 void Start()
 {
     rb             = GetComponent <Rigidbody>();
     cercaDetection = GetComponent <cerca>();
     myPlayerHolder = GetComponent <holder>();
     chefWalk       = GetComponent <Animator>();
     Plate          = GetComponent <plate>();
     humo.SetActive(false);
     Entrega = GetComponent <entrega>();
 }
Exemplo n.º 2
0
 public Result UpdatePlate(plate myPlate)
 {
     _plateBll.Update(myPlate);
     return(Result.Success());
 }
Exemplo n.º 3
0
 public Result AddPlate(plate myPlate)
 {
     _plateBll.Add(myPlate);
     return(Result.Success());
 }