/// <summary> /// Initializes important variables /// </summary> private void InitBasics() { String dataPath = Path.Combine(PathHelper.DataDir, "FlashDebugger"); if (!Directory.Exists(dataPath)) { Directory.CreateDirectory(dataPath); } this.settingFilename = Path.Combine(dataPath, "Settings.fdb"); this.pluginImage = PluginBase.MainForm.FindImage("54|23|5|4"); breakPointManager = new BreakPointManager(); debugManager = new DebuggerManager(); liveDataTip = new LiveDataTip(); }
/// <summary> /// Initializes important variables /// </summary> private void InitBasics() { String dataPath = Path.Combine(PathHelper.DataDir, "FlashDebugger"); if (!Directory.Exists(dataPath)) Directory.CreateDirectory(dataPath); this.settingFilename = Path.Combine(dataPath, "Settings.fdb"); this.pluginImage = PluginBase.MainForm.FindImage("54|23|5|4"); breakPointManager = new BreakPointManager(); debugManager = new DebuggerManager(); liveDataTip = new LiveDataTip(); }