PKHeX.SAV_SecretBase.SAV_SecretBase C# (CSharp) Method

SAV_SecretBase() public method

public SAV_SecretBase ( Form1 frm1 ) : System
frm1 Form1
return System
        public SAV_SecretBase(Form1 frm1)
        {
            InitializeComponent();
            Util.TranslateInterface(this, Form1.curlanguage);
            m_parent = frm1;
            Array.Copy(m_parent.savefile, sav, 0x100000);
            abilitylist = Form1.abilitylist;

            setupComboBoxes();
            popFavorite();
            popFavorite();

            LB_Favorite.SelectedIndex = 0;
            // MT_Flags.Text = BitConverter.ToUInt16(sav, 0x24800 + 0x140).ToString(); PSS Stat transmitted
            MT_Flags.Text = BitConverter.ToUInt32(sav, 0x2942C).ToString(); // read counter
            B_SAV2FAV(null, null);
        }
        Form1 m_parent;