using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Tango.Scripting.Core;
namespace Tango.Scripting.Editors
{
public class BreakPointSymbolPressedEventArgs : EventArgs
{
public ScriptBreakPointSymbol BreakPointSymbol { get; set; }
public Point Position { get; set; }
}
}