NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Framework/GameplayInfoManager.cs

22 lines
491 B
C#
Raw Normal View History

2023-08-22 19:08:45 +08:00
using System;
using System.Collections.Generic;
using UnityEngine;
2023-10-19 15:00:19 +08:00
namespace PhxhSDK
2023-08-22 19:08:45 +08:00
{
2023-10-19 15:00:19 +08:00
public class GameplayInfoManager : Singlenton<GameplayInfoManager>
2023-08-22 19:08:45 +08:00
{
public class GameplayInfo
{
public enum GameInfoType
{
Unit,
}
public uint id;
public GameInfoType type;
}
private Dictionary<int, GameplayInfo> _infos = new Dictionary<int, GameplayInfo>(32);
}
}