Replaces partial EffectMgr.EffectType with all 226 decomp values; copies the IsNotNullOrEmpty/EquelsID/FindFromCardId/GetAllFuncVfxResults extension files + UI extensions; adds Renderer/MeshFilter shared-material/mesh/sortingOrder. Compile loop then closed the revealed deps (3242 files). 9.1k -> 18 errors.
18 lines
611 B
C#
18 lines
611 B
C#
namespace Wizard.Battle.Recovery;
|
|
|
|
public class NetworkBattleRecoveryRecordManager : RecoveryRecordManagerBase
|
|
{
|
|
protected override string DefaultRecoveryFileName => "recovery_network.json";
|
|
|
|
protected override OperationRecorderBase CreateOperationRecorder()
|
|
{
|
|
return new NetworkBattleOperationRecorder(_recoveryFilePath);
|
|
}
|
|
|
|
protected override void SetupRecorderEvents(OperationRecorderBase operationRecorder, BattleManagerBase battleMgr)
|
|
{
|
|
base.SetupRecorderEvents(operationRecorder, battleMgr);
|
|
battleMgr.OperateMgr.OnBeforePlayerTurnEnd += operationRecorder.RecordTurnEnd;
|
|
}
|
|
}
|