(client) chore:Rearrange source file structure

This commit is contained in:
CaicukunChiji
2025-07-09 16:54:59 +08:00
parent 76908dbf8a
commit e56b274250
10 changed files with 62 additions and 112 deletions

View File

@ -1,15 +1,16 @@
using Base;
using UnityEngine;
using UnityEngine.SceneManagement;
namespace Cell
namespace Test
{
public class InitClock : MonoBehaviour
{
static float timer = 0;
private static float timer = 0;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
private void Start()
{
var clock= Clock.Instance;
var clock = Clock.Instance;
}
// Update is called once per frame
@ -22,9 +23,9 @@ namespace Cell
// if (timer > 1)
// {
// timer -= 1;
// Debug.Log("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD>ӳ<EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>");
// Debug.Log("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD>ӳ<EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>");
// }
// timer += Time.deltaTime;
//}
}
}
}