Supermarket.Checkout.Awake C# (CSharp) Method

Awake() private method

private Awake ( ) : void
return void
        void Awake()
        {
            supermarket = GameObject.FindGameObjectWithTag("Supermarket").GetComponent<Supermarket>();
            interaction = GetComponent<Interactable>();

            selectionCollider = GetComponent<Collider>();
        }