24 lines
479 B
C#
24 lines
479 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public enum PersonalPvpType
|
|||
|
{
|
|||
|
Cupper,
|
|||
|
Sliver,
|
|||
|
Gold
|
|||
|
}
|
|||
|
public class PvpMap:Entity
|
|||
|
{
|
|||
|
public static PvpMap inatance;
|
|||
|
|
|||
|
public List<Unit> matchCupperList = new();
|
|||
|
public List<Unit> matchSliverList = new();
|
|||
|
public List<Unit> matchGoldList = new();
|
|||
|
|
|||
|
public LinkedList<(long, int)> rankList = new();
|
|||
|
public long timerId;
|
|||
|
}
|
|||
|
}
|