24 lines
834 B
C#
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();
|
|
|
|
/************************************************************************************************************************/
|
|
}
|
|
}
|