Example #1
0
        private void rawBLFToolStripMenuItem_Click(object sender, EventArgs e)
        {
            OpenFileDialog ofd = new OpenFileDialog();

            if (ofd.ShowDialog() == DialogResult.OK)
            {
                PartyBlam.Blam.RawBLF blf = new PartyBlam.Blam.RawBLF(ofd.FileName);
            }
        }
Example #2
0
 private void rawBLFToolStripMenuItem_Click(object sender, EventArgs e)
 {
     OpenFileDialog ofd = new OpenFileDialog();
     if (ofd.ShowDialog() == DialogResult.OK)
     {
         PartyBlam.Blam.RawBLF blf = new PartyBlam.Blam.RawBLF(ofd.FileName);
     }
 }