1234567891011121314151617181920212223 |
- // Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2024 Kybernetik //
- namespace Animancer.Samples.FineControl
- {
- /// <summary>An object that can be interacted with.</summary>
- ///
- /// <remarks>
- /// <strong>Sample:</strong>
- /// <see href="https://kybernetik.com.au/animancer/docs/samples/fine-control/doors">
- /// Doors</see>
- /// </remarks>
- ///
- /// https://kybernetik.com.au/animancer/api/Animancer.Samples.FineControl/IInteractable
- ///
- public interface IInteractable
- {
- /************************************************************************************************************************/
- void Interact();
- /************************************************************************************************************************/
- }
- }
|