17 lines
268 B
C#
17 lines
268 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public class BossBattle : BattleBase
|
|||
|
{
|
|||
|
public override BattleType battleType => BattleType.Boss;
|
|||
|
|
|||
|
public long startTime;
|
|||
|
|
|||
|
|
|||
|
public int mapId;
|
|||
|
}
|
|||
|
}
|