summaryrefslogtreecommitdiff
path: root/src/TrainerMod/Framework/ItemData/ISearchItem.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-07-02 17:37:30 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-07-02 17:37:30 -0400
commit40e8d3da0e204117d0a6de91b368ef420eb31df0 (patch)
tree8c1d2f1149b9eff23db90c7dafad0f05de279028 /src/TrainerMod/Framework/ItemData/ISearchItem.cs
parenta0c4746c27656d6617853890d270072c13843c64 (diff)
downloadSMAPI-40e8d3da0e204117d0a6de91b368ef420eb31df0.tar.gz
SMAPI-40e8d3da0e204117d0a6de91b368ef420eb31df0.tar.bz2
SMAPI-40e8d3da0e204117d0a6de91b368ef420eb31df0.zip
migrate list_items command to new item repository (#302)
Diffstat (limited to 'src/TrainerMod/Framework/ItemData/ISearchItem.cs')
-rw-r--r--src/TrainerMod/Framework/ItemData/ISearchItem.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/TrainerMod/Framework/ItemData/ISearchItem.cs b/src/TrainerMod/Framework/ItemData/ISearchItem.cs
deleted file mode 100644
index db30da77..00000000
--- a/src/TrainerMod/Framework/ItemData/ISearchItem.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-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; }
- }
-} \ No newline at end of file