blob: 1728bb565dbfc0623170fd6044c530d715d08f4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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; }
}
}
|