22 lines
392 B
C#
22 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ET
|
|
{
|
|
public class FamilyBossBattle : BattleBase
|
|
{
|
|
public override BattleType battleType => BattleType.FamilyBoss;
|
|
|
|
public long startTime;
|
|
|
|
public FamilyBoss family;
|
|
|
|
public int bossId;
|
|
|
|
public BossDamageMap bossDamageMap;
|
|
|
|
public bool hasSettle;
|
|
}
|
|
}
|