namespace UnityEngine.XR.Content.Interaction
{
    /// 
    /// Interface to implement for objects that hold a set of Keys
    /// 
    public interface IKeychain
    {
        /// 
        /// This callback is used to check if this keychain has a specific Key
        /// 
        /// 
        /// the key to be checked
        /// True if this keychain has the supplied key; false otherwise
        bool Contains(Key key);
    }
}