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

18 lines
308 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using Cal.DataTable;
using System;
using System.Collections.Generic;
using System.Text;
namespace ET
{
public class TrialCopyBattle : BattleBase
{
public override BattleType battleType => BattleType.TrialCopy;
public long startTime;
public TrialCopy trialCopy;
}
}