using System; using System.Collections.Generic; using UnityEngine; namespace PhxhSDK { public class GameplayInfoManager : Singlenton { public class GameplayInfo { public enum GameInfoType { Unit, } public uint id; public GameInfoType type; } private Dictionary _infos = new Dictionary(32); } }