diff options
author | chai <chaifix@163.com> | 2022-04-25 09:31:16 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-04-25 09:31:16 +0800 |
commit | 0eff98708ab049559d7891f1aa24e365000caae1 (patch) | |
tree | 658e5a5d30fd102902dba4c7d92840f21c02feea /SurvivalTest/Assets/Scripts/Items/Item_NuclearBomb.cs | |
parent | 7ce71eb22dfcb1c0ee06560f41570c10a9df1bab (diff) |
*misc
Diffstat (limited to 'SurvivalTest/Assets/Scripts/Items/Item_NuclearBomb.cs')
-rw-r--r-- | SurvivalTest/Assets/Scripts/Items/Item_NuclearBomb.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/SurvivalTest/Assets/Scripts/Items/Item_NuclearBomb.cs b/SurvivalTest/Assets/Scripts/Items/Item_NuclearBomb.cs new file mode 100644 index 0000000..eb483e2 --- /dev/null +++ b/SurvivalTest/Assets/Scripts/Items/Item_NuclearBomb.cs @@ -0,0 +1,14 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class Item_NuclearBomb : ItemBase +{ + public override string name => "ΊΛ΅―ΓάΒλΟδ"; + + public override string iconPath => "art/ui/itemicon/nuclear_bomb"; + + public override void OnUse(GameObject owner) + { + } +}
\ No newline at end of file |