PKHeX.SAV_PokedexORAS.SAV_PokedexORAS C# (CSharp) Method

SAV_PokedexORAS() public method

public SAV_PokedexORAS ( Form1 frm1 ) : System
frm1 Form1
return System
        public SAV_PokedexORAS(Form1 frm1)
        {
            InitializeComponent();
            Util.TranslateInterface(this, Form1.curlanguage);
            m_parent = frm1;
            Array.Copy(m_parent.savefile, sav, sav.Length);
            sv = m_parent.savindex * 0x7F000;
            dexoffset += sv;
            Setup();
            editing = false;
            LB_Species.SelectedIndex = 0;
            TB_Spinda.Text = BitConverter.ToUInt32(sav, dexoffset + 0x680).ToString("X8");
        }
        private int dexoffset = 0x15000 + 0x5400;