com.alicizax.kybernetik.ani.../Samples~/02 Fine Control/03 Doors/IInteractable.cs

24 lines
834 B
C#
Raw Normal View History

2025-01-08 15:26:57 +08:00
// 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();
/************************************************************************************************************************/
}
}