Files
Gen_Hack-and-Slash-Roguelit…/Client/Assets/Scripts/Program.cs

9 lines
171 B
C#
Raw Normal View History

2025-07-08 09:42:27 +08:00
using Logging;
using UnityEngine;
2025-08-20 17:55:22 +08:00
public class Program : Utils.Singleton<Program>
2025-07-08 09:42:27 +08:00
{
public Entity.Entity focusedEntity = null;
2025-08-20 17:55:22 +08:00
public bool needLoad = true;
2025-07-08 09:42:27 +08:00
}