/// --------------------------------------------- /// Ultimate Character Controller /// Copyright (c) Opsive. All Rights Reserved. /// https://www.opsive.com /// --------------------------------------------- namespace Opsive.UltimateCharacterController.Traits { /// /// Interface for an interactable target that can display a message. /// public interface IInteractableMessage { /// /// Returns the message that should be displayed when the object can be interacted with. /// /// The message that should be displayed when the object can be interacted with. string AbilityMessage(); } }