public frmWarp(Program.GameTypes g, GBHL.GBFile gbf, byte f) { InitializeComponent(); game = g; if (g == Program.GameTypes.Ages) { foreach (string s in agesGroupNames) { cboArea.Items.Add(s); } } else { foreach (string s in seasonsGroupNames) { cboArea.Items.Add(s); } } cboArea.SelectedIndex = 0; flag2 = f; gb = gbf; warpLoader = new WarpLoader(gb); mapLoader = new MapLoader(gb); }
public frmWarpProps(WarpLoader w, int g, int la, Program.GameTypes gm, GBHL.GBFile gbf) { game = gm; warpLoader = w; group = g; lastAddress = la; gb = gbf; InitializeComponent(); }