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.
21 lines
447 B
C#
21 lines
447 B
C#
using LitJson;
|
|
|
|
namespace Wizard.Battle.Operation;
|
|
|
|
public class ChangeAIOperationCommand : IOperationCommand
|
|
{
|
|
public string Logic { get; private set; }
|
|
|
|
public int QueueCount { get; private set; }
|
|
|
|
public ChangeAIOperationCommand(JsonData actionJsonData)
|
|
{
|
|
Logic = actionJsonData["logic"].ToString();
|
|
QueueCount = actionJsonData["queue_count"].ToInt();
|
|
}
|
|
|
|
public void Operation(BattleManagerBase battleMgr)
|
|
{
|
|
}
|
|
}
|