diff options
author | chai <chaifix@163.com> | 2022-04-22 22:00:37 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-04-22 22:00:37 +0800 |
commit | 64eeb50eb855d1166d41bd25b58a34919a49589d (patch) | |
tree | 8b093967e15d92d6bc5699fa7716066bf132b793 /SurvivalTest/Assets/Scripts/Decorations | |
parent | edaeb4b7c681cc1654745e5a9be531a71088d1af (diff) |
* equip, item, decoration
Diffstat (limited to 'SurvivalTest/Assets/Scripts/Decorations')
4 files changed, 49 insertions, 0 deletions
diff --git a/SurvivalTest/Assets/Scripts/Decorations/DecorationBase.cs b/SurvivalTest/Assets/Scripts/Decorations/DecorationBase.cs new file mode 100644 index 0000000..a181628 --- /dev/null +++ b/SurvivalTest/Assets/Scripts/Decorations/DecorationBase.cs @@ -0,0 +1,15 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +/// <summary> +/// ÊÎÆ·£¬¼ÓBUFF +/// </summary> +public class DecorationBase : MonoBehaviour +{ + + public virtual void Update() + { + } + +}
\ No newline at end of file diff --git a/SurvivalTest/Assets/Scripts/Decorations/DecorationBase.cs.meta b/SurvivalTest/Assets/Scripts/Decorations/DecorationBase.cs.meta new file mode 100644 index 0000000..9f1912a --- /dev/null +++ b/SurvivalTest/Assets/Scripts/Decorations/DecorationBase.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 72da216a6b7eca344bbc15fbae26c2a3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/SurvivalTest/Assets/Scripts/Decorations/Decoration_Horn.cs b/SurvivalTest/Assets/Scripts/Decorations/Decoration_Horn.cs new file mode 100644 index 0000000..8618df6 --- /dev/null +++ b/SurvivalTest/Assets/Scripts/Decorations/Decoration_Horn.cs @@ -0,0 +1,12 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +/// <summary> +/// Ê޽ǣ¬ÌáÉý¹¥»÷Á¦ +/// </summary> +public class Decoration_Horn : DecorationBase +{ + + +} diff --git a/SurvivalTest/Assets/Scripts/Decorations/Decoration_Horn.cs.meta b/SurvivalTest/Assets/Scripts/Decorations/Decoration_Horn.cs.meta new file mode 100644 index 0000000..0991538 --- /dev/null +++ b/SurvivalTest/Assets/Scripts/Decorations/Decoration_Horn.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 96a5f4ce988299c4683d64b3b8d41852 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: |