public void SetInteraction(InteractionObject newInteraction)
 {
     _interaction = newInteraction;
 }
 public void AddInteraction(InteractionObject interactionToAdd, GameObject sender)
 {
     interactionToAdd.SetSender(sender);
     _interactions.Add(interactionToAdd);
 }