mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-19 23:17:13 +08:00
(client) fix:Use the correct namespace
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.SceneManagement;
|
using UnityEngine.SceneManagement;
|
||||||
|
using Utils;
|
||||||
|
|
||||||
namespace Base
|
namespace Base
|
||||||
{
|
{
|
||||||
@@ -25,7 +26,7 @@ namespace Base
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class Clock : Ulity.MonoSingleton<Clock>
|
public class Clock : MonoSingleton<Clock>
|
||||||
{
|
{
|
||||||
public bool pause;
|
public bool pause;
|
||||||
public List<ITickPhysics> tickPhysics = new();
|
public List<ITickPhysics> tickPhysics = new();
|
||||||
|
|||||||
Reference in New Issue
Block a user