LSLEditor/trunk/Helpers/OutlineHelper.cs
dimentox e6edb01d66 current work
git-svn-id: https://lsleditor.svn.sourceforge.net/svnroot/lsleditor@10 3f4676ac-adda-40fd-8265-58d1435b1672
2010-04-29 22:31:30 +00:00

17 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace LSLEditor.Helpers
{
class OutlineHelper
{
public KeyWordInfo info;
public int line;
public OutlineHelper(KeyWordInfo i, int l)
{
this.info = i;
this.line = l;
}
}
}