Enable creation of new worlds in Torch

This commit is contained in:
Brant Martin
2019-01-10 19:11:19 -05:00
parent 3d8bf78213
commit f990d27851
4 changed files with 65 additions and 21 deletions

View File

@@ -116,5 +116,11 @@ namespace Torch.Server.Views
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
private void NewWorld_OnClick(object sender, RoutedEventArgs e)
{
var c = new WorldGeneratorDialog(_instanceManager);
c.Show();
}
}
}