diff options
author | chai <215380520@qq.com> | 2023-05-11 19:14:31 +0800 |
---|---|---|
committer | chai <215380520@qq.com> | 2023-05-11 19:14:31 +0800 |
commit | b8a694746562b37dc8dc5b8b5aec8612bb0964fc (patch) | |
tree | afedcf84a2f1715edc95a77a0d9bf3437d5d0bfd /marching/Assets/Scripts/Physics/PhysicsSystem.cs | |
parent | b57d658d42b0cb55d4b63ca5da97177c0848d7e6 (diff) |
+misc
Diffstat (limited to 'marching/Assets/Scripts/Physics/PhysicsSystem.cs')
-rw-r--r-- | marching/Assets/Scripts/Physics/PhysicsSystem.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/marching/Assets/Scripts/Physics/PhysicsSystem.cs b/marching/Assets/Scripts/Physics/PhysicsSystem.cs new file mode 100644 index 0000000..5c7283f --- /dev/null +++ b/marching/Assets/Scripts/Physics/PhysicsSystem.cs @@ -0,0 +1,23 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class PhysicsSystem : SingletonMB<PhysicsSystem> +{ + + protected override void Awake() + { + base.Awake(); + } + + protected override void OnDestroy() + { + base.OnDestroy(); + } + + protected override void DoWhenOnDestroy() + { + base.DoWhenOnDestroy(); + } + +} |