// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2023 Kybernetik // namespace Animancer.Examples.FineControl { /// An object that can be interacted with. /// Doors /// https://kybernetik.com.au/animancer/api/Animancer.Examples.FineControl/IInteractable /// public interface IInteractable { /************************************************************************************************************************/ void Interact(); /************************************************************************************************************************/ } }