StonehearthEditor.MainForm.createNewMod C# (CSharp) 메소드

createNewMod() 개인적인 메소드

private createNewMod ( ) : void
리턴 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();
        }