Example #1
0
    // Computes the flooding
    // Does not generate the floodable tiles, it has already been done at the start of the turn with PredictFlooding
    public void RecomputeFlooding()
    {
        if (_latestFloodCommand != null)
        {
            _latestFloodCommand.Undo();
        }
        FloodMapCommand floodMapCommand = new FloodMapCommand();

        _latestFloodCommand = floodMapCommand;
        CommandManager.Instance.ExecuteCommand(floodMapCommand);
        OnFloodDone?.Invoke();
    }