com.alicizax.kybernetik.ani.../Samples~/02 Fine Control/03 Doors/IInteractable.cs
陈思海 3e7c253249 init
2025-01-08 15:26:57 +08:00

24 lines
834 B
C#

// 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();
/************************************************************************************************************************/
}
}