mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 02:17:12 +08:00
15 lines
217 B
C#
15 lines
217 B
C#
|
|
using Logging;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class Program : MonoBehaviour
|
||
|
|
{
|
||
|
|
private void Awake()
|
||
|
|
{
|
||
|
|
UnityLogger.Init();
|
||
|
|
}
|
||
|
|
|
||
|
|
private void Start()
|
||
|
|
{
|
||
|
|
Debug.Log("Starting game...");
|
||
|
|
}
|
||
|
|
}
|