diff options
Diffstat (limited to 'SurvivalTest/Assets/Scripts/Items/Item_Wrench.cs')
-rw-r--r-- | SurvivalTest/Assets/Scripts/Items/Item_Wrench.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/SurvivalTest/Assets/Scripts/Items/Item_Wrench.cs b/SurvivalTest/Assets/Scripts/Items/Item_Wrench.cs new file mode 100644 index 0000000..52b9685 --- /dev/null +++ b/SurvivalTest/Assets/Scripts/Items/Item_Wrench.cs @@ -0,0 +1,11 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class Item_Wrench : ItemBase +{ + public override string name => "°âÊÖ"; + + public override string iconPath => "art/ui/item/wrench"; + +} |