diff options
author | chai <chaifix@163.com> | 2020-10-21 22:51:18 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2020-10-21 22:51:18 +0800 |
commit | df84ee7e568fa500fec7b1865b966345b814e68f (patch) | |
tree | d1f6323abcd920cdafe773d83cd70586813312b2 /Assets/Scripts/Effects/IEffectHandler.cs | |
parent | 348306caec8f3c1aebee14523f7ae7d9b2c452b3 (diff) |
+ 残影特效
Diffstat (limited to 'Assets/Scripts/Effects/IEffectHandler.cs')
-rw-r--r-- | Assets/Scripts/Effects/IEffectHandler.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Assets/Scripts/Effects/IEffectHandler.cs b/Assets/Scripts/Effects/IEffectHandler.cs new file mode 100644 index 00000000..bdc4c6a0 --- /dev/null +++ b/Assets/Scripts/Effects/IEffectHandler.cs @@ -0,0 +1,18 @@ +using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class IEffectHandler : MonoBehaviour
+{
+ // Start is called before the first frame update
+ void Start()
+ {
+
+ }
+
+ // Update is called once per frame
+ void Update()
+ {
+
+ }
+}
|