// interfejs za neke interactable object-e npr. door
public interface IInteractable
{
    public void Interact();
}
