diff options
Diffstat (limited to 'marching/Assets/Scripts/Physics/PhysicsSystem.cs')
-rw-r--r-- | marching/Assets/Scripts/Physics/PhysicsSystem.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/marching/Assets/Scripts/Physics/PhysicsSystem.cs b/marching/Assets/Scripts/Physics/PhysicsSystem.cs deleted file mode 100644 index 5c7283f..0000000 --- a/marching/Assets/Scripts/Physics/PhysicsSystem.cs +++ /dev/null @@ -1,23 +0,0 @@ -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(); - } - -} |