From 2fc9585797067730f28b03b0727bf05f9deed091 Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Fri, 12 May 2023 10:32:11 +0800 Subject: + worldline keepers --- .../Assets/Scripts/Physics/PhysicsSystem.cs | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 WorldlineKeepers/Assets/Scripts/Physics/PhysicsSystem.cs (limited to 'WorldlineKeepers/Assets/Scripts/Physics/PhysicsSystem.cs') diff --git a/WorldlineKeepers/Assets/Scripts/Physics/PhysicsSystem.cs b/WorldlineKeepers/Assets/Scripts/Physics/PhysicsSystem.cs new file mode 100644 index 0000000..5c7283f --- /dev/null +++ b/WorldlineKeepers/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