Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
ParsingEventArgs.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 
6 namespace Irony.Parsing {
7  public class ParsingEventArgs : EventArgs {
8  public readonly ParsingContext Context;
9  public ParsingEventArgs(ParsingContext context) {
10  Context = context;
11  }
12  }
13 }
readonly ParsingContext Context
ParsingEventArgs(ParsingContext context)