17 lines
284 B
C#
17 lines
284 B
C#
|
using Cal.DataTable;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public class IdleBattle : BattleBase
|
|||
|
{
|
|||
|
public override BattleType battleType =>BattleType.IdleBattle;
|
|||
|
|
|||
|
public long startTime;
|
|||
|
|
|||
|
|
|||
|
public MainStory mainStory;
|
|||
|
}
|
|||
|
}
|