mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 01:07:14 +08:00
(client) feat:Add logging module
This commit is contained in:
15
Client/Assets/Scripts/Program.cs
Normal file
15
Client/Assets/Scripts/Program.cs
Normal 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...");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user