From 8005d8bf3fa75f48595ad53ec00c24dbc75f50a7 Mon Sep 17 00:00:00 2001 From: CaicukunChiji Date: Wed, 9 Jul 2025 17:54:54 +0800 Subject: [PATCH] (client) fix:Use the correct namespace --- Client/Assets/Scripts/Base/Clock.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Client/Assets/Scripts/Base/Clock.cs b/Client/Assets/Scripts/Base/Clock.cs index c68b879..5cccf68 100644 --- a/Client/Assets/Scripts/Base/Clock.cs +++ b/Client/Assets/Scripts/Base/Clock.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; +using Utils; namespace Base { @@ -25,7 +26,7 @@ namespace Base } } - public class Clock : Ulity.MonoSingleton + public class Clock : MonoSingleton { public bool pause; public List tickPhysics = new();