Files

18 lines
759 B
C#
Raw Permalink Normal View History

2024-06-03 10:11:43 +08:00
// 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();
/************************************************************************************************************************/
}
}