(client) feat:Add logging module

This commit is contained in:
CaicukunChiji
2025-07-08 09:42:27 +08:00
parent fffc5fad0a
commit 841b0ff174
21 changed files with 287 additions and 8 deletions

View File

@ -0,0 +1,15 @@
using Logging;
using UnityEngine;
public class Program : MonoBehaviour
{
private void Awake()
{
UnityLogger.Init();
}
private void Start()
{
Debug.Log("Starting game...");
}
}