18 lines
759 B
C#
18 lines
759 B
C#
// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2023 Kybernetik //
|
|
|
|
namespace Animancer.Examples.FineControl
|
|
{
|
|
/// <summary>An object that can be interacted with.</summary>
|
|
/// <example><see href="https://kybernetik.com.au/animancer/docs/examples/fine-control/doors">Doors</see></example>
|
|
/// https://kybernetik.com.au/animancer/api/Animancer.Examples.FineControl/IInteractable
|
|
///
|
|
public interface IInteractable
|
|
{
|
|
/************************************************************************************************************************/
|
|
|
|
void Interact();
|
|
|
|
/************************************************************************************************************************/
|
|
}
|
|
}
|