CTT/Server/Model/Game/Entity/Battle/New/BattleMgrCompnent.cs

16 lines
332 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace ET
{
public class BattleMgrCompnent : Entity
{
public static BattleMgrCompnent Instance { get; set; }
2021-05-01 11:27:41 +08:00
public readonly Dictionary<long, CopyBattle> teamBattleTypeDic = new Dictionary<long, CopyBattle>();
2021-04-08 20:09:59 +08:00
}
}