/// --------------------------------------------- /// Ultimate Character Controller /// Copyright (c) Opsive. All Rights Reserved. /// https://www.opsive.com /// --------------------------------------------- namespace Opsive.UltimateCharacterController.Character.Abilities.Items { /// /// Interface for any ability that should be notified when the item is toggled while the ability is active. /// public interface IItemToggledReceiver { /// /// The ItemEquipVerifier ability has toggled an item slot. /// void ItemToggled(); } }