> For the complete documentation index, see [llms.txt](https://malbersanimations.gitbook.io/animal-controller/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://malbersanimations.gitbook.io/animal-controller/interfaces/iinteractor.md).

# IInteractor

```csharp

/// <summary>ID value to recognize who is doing the interaction.</summary>
int ID { get; }

/// <summary>Can the interactor interact?</summary>
bool Active { get; set; }

/// <summary>GameObject of who is doing the interaction.</summary>
Transform Owner { get; }

/// <summary>Runs the interactor logic. It also calls the interactable.</summary>
void Interact(IInteractable interactable);
```
