From b8a694746562b37dc8dc5b8b5aec8612bb0964fc Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Thu, 11 May 2023 19:14:31 +0800 Subject: +misc --- marching/Assets/Scripts/Physics/PhysicsSystem.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 marching/Assets/Scripts/Physics/PhysicsSystem.cs (limited to 'marching/Assets/Scripts/Physics/PhysicsSystem.cs') 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 +{ + + protected override void Awake() + { + base.Awake(); + } + + protected override void OnDestroy() + { + base.OnDestroy(); + } + + protected override void DoWhenOnDestroy() + { + base.DoWhenOnDestroy(); + } + +} -- cgit v1.1-26-g67d0