git-svn-id: https://lsleditor.svn.sourceforge.net/svnroot/lsleditor@10 3f4676ac-adda-40fd-8265-58d1435b1672
17 lines
336 B
C#
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;
|
|
}
|
|
}
|
|
}
|