Copied the 89 uncopied AI*SimulationUtility/extension files defining the AIVirtualCard/AIVirtualField extension methods; the compile loop then auto-closed the revealed type deps (~3049 files total, drift-clean). 10.0k -> 62 errors.
18 lines
364 B
C#
18 lines
364 B
C#
namespace Wizard;
|
|
|
|
public class RoomBattleFinishTaskAvatar : RoomBattleFinishTask
|
|
{
|
|
public RoomBattleFinishTaskAvatar(bool isGathering)
|
|
: base(isConvention: false, isGathering: false)
|
|
{
|
|
if (isGathering)
|
|
{
|
|
base.type = ApiType.Type.GatheringRoomBattleFinish;
|
|
}
|
|
else
|
|
{
|
|
base.type = ApiType.Type.OpenRoomMatchFinishAvatar;
|
|
}
|
|
}
|
|
}
|