aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/MachineStudio.Dispensers/Views/MainView.xaml.cs
blob: bc3f747e84e253f711d8d326c1e274a21b6b3de6 (plain)
1
2
3
4
5
6
7
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; }
    }
}