Files
YesNt-Interpreter/YesNt.Interpreter/Runtime/DebugEventArgs.cs
T
Stone-Red-Code 2a7e8074ba - Add functions
- Code improvements
2021-11-19 20:49:55 +01:00

13 lines
380 B
C#

using System;
namespace YesNt.Interpreter.Runtime
{
public class DebugEventArgs : EventArgs
{
public int LineNumber { get; internal set; }
public string CurrentLine { get; internal set; }
public string OriginalLine { get; internal set; }
public int TaskId { get; internal set; }
public bool IsTask { get; internal set; }
}
}