diff options
author | chai <215380520@qq.com> | 2023-05-04 11:25:52 +0800 |
---|---|---|
committer | chai <215380520@qq.com> | 2023-05-04 11:25:52 +0800 |
commit | 848097c88bbcf24934a375dff39cf4defa2819dd (patch) | |
tree | 85f4cc4d09fbf2a3839752449d21cb3e0bec8fa1 /marching/Assets/Scripts/Items/ItemBase.cs | |
parent | ba1ad0efd8601dc4af023aca5a78609c55b4d67f (diff) |
*misc
Diffstat (limited to 'marching/Assets/Scripts/Items/ItemBase.cs')
-rw-r--r-- | marching/Assets/Scripts/Items/ItemBase.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/marching/Assets/Scripts/Items/ItemBase.cs b/marching/Assets/Scripts/Items/ItemBase.cs new file mode 100644 index 0000000..98f3c2a --- /dev/null +++ b/marching/Assets/Scripts/Items/ItemBase.cs @@ -0,0 +1,22 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class ItemBase : EntityBase +{ + protected virtual void Awake() + { + base.Awake(); + } + + protected virtual void Update() + { + base.Update(); + } + + protected virtual void LateUpdate() + { + base.LateUpdate(); + } + +} |