16 lines
332 B
C#
16 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ET
|
|
{
|
|
public class BattleMgrCompnent : Entity
|
|
{
|
|
public static BattleMgrCompnent Instance { get; set; }
|
|
|
|
public readonly Dictionary<long, CopyBattle> teamBattleTypeDic = new Dictionary<long, CopyBattle>();
|
|
|
|
|
|
}
|
|
}
|