summaryrefslogtreecommitdiff
path: root/src/TrainerMod/Framework/ItemData/ISearchItem.cs
blob: db30da77c772029d7719c4dd4956b58b4486e783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace TrainerMod.Framework.ItemData
{
    /// <summary>An item that can be searched and added to the player's inventory through the console.</summary>
    internal interface ISearchItem
    {
        /*********
        ** Accessors
        *********/
        /// <summary>Whether the item is valid.</summary>
        bool IsValid { get; }

        /// <summary>The item ID.</summary>
        int ID { get; }

        /// <summary>The item name.</summary>
        string Name { get; }

        /// <summary>The item type.</summary>
        ItemType Type { get; }
    }
}