StonehearthEditor.MainForm.createNewMod C# (CSharp) Method

createNewMod() private method

private createNewMod ( ) : void
return void
        private void createNewMod()
        {
            NewModCallback callback = new NewModCallback(this.manifestView);
            InputDialog dialog = new InputDialog("Create New Mod", "Type the name of your mod (lowercase only, no spaces):", "my_test_mod", "Create!");
            dialog.SetCallback(callback);
            dialog.ShowDialog();
        }