Ejemplo n.º 1
0
Archivo: BEdit.cs Proyecto: benixos/agi
 private void saveToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (this.currentPath != null)
     {
         myWorld.agi.write(currentPath, 2, richTextBox1.Text, 0, 0);
     }
     else
     {
         myWorld.print("no save path set");
     }
 }