public void InvokeInteractButtonEvent() { if (InteractButtonEvent != null) { InteractButtonEvent.Invoke(); } }
private void Update() { if (Input.GetKeyDown(KeyCode.E)) { InteractButtonEvent?.Invoke(); } }