BITFALL/Assets/Plugins/Animancer/Examples/02 Fine Control/03 Doors/IInteractable.cs

18 lines
759 B
C#
Raw Normal View History

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