IInteractable.cs 834 B

1234567891011121314151617181920212223
  1. // Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2024 Kybernetik //
  2. namespace Animancer.Samples.FineControl
  3. {
  4. /// <summary>An object that can be interacted with.</summary>
  5. ///
  6. /// <remarks>
  7. /// <strong>Sample:</strong>
  8. /// <see href="https://kybernetik.com.au/animancer/docs/samples/fine-control/doors">
  9. /// Doors</see>
  10. /// </remarks>
  11. ///
  12. /// https://kybernetik.com.au/animancer/api/Animancer.Samples.FineControl/IInteractable
  13. ///
  14. public interface IInteractable
  15. {
  16. /************************************************************************************************************************/
  17. void Interact();
  18. /************************************************************************************************************************/
  19. }
  20. }