IInteractable.cs 754 B

1234567891011121314151617
  1. // Animancer // https://kybernetik.com.au/animancer // Copyright 2022 Kybernetik //
  2. namespace Animancer.Examples.FineControl
  3. {
  4. /// <summary>An object that can be interacted with.</summary>
  5. /// <example><see href="https://kybernetik.com.au/animancer/docs/examples/fine-control/doors">Doors</see></example>
  6. /// https://kybernetik.com.au/animancer/api/Animancer.Examples.FineControl/IInteractable
  7. ///
  8. public interface IInteractable
  9. {
  10. /************************************************************************************************************************/
  11. void Interact();
  12. /************************************************************************************************************************/
  13. }
  14. }