BananaMpq.View.Presenters.TileSelectionPresenter.LoadSelectedTile C# (CSharp) Method

LoadSelectedTile() private method

private LoadSelectedTile ( object sender, TileSelectionEventArgs e ) : void
sender object
e BananaMpq.View.Views.TileSelectionEventArgs
return void
        private void LoadSelectedTile(object sender, TileSelectionEventArgs e)
        {
            _lastContinent = e.Continent;
            _service.LoadTile(e.Continent, e.X, e.Y);
        }