示例#1
0
文件: MainFrm.cs 项目: KasumiL5x/ciri
 void btn_exportAllBinary_Click(object sender, EventArgs e)
 {
     MayaParser parser = new MayaParser();
     parser.parse();
     parser.writeBinary(txt_outFile.Text);
     MessageBox.Show("Exported to <" + txt_outFile.Text + ">!");
 }