This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
chovy-gm/GMAssetCompiler/LexTree.cs

32 lines
426 B
C#

using System.Collections.Generic;
namespace GMAssetCompiler
{
public class LexTree
{
public List<LexTree> Children;
public Dictionary<string, VFNode> Used;
public string Name;
public VFNode Node;
public eLex Token;
public string Text;
public double _value;
public bool anon;
public LexTree(eLex _token, string _text)
{
Text = _text;
Token = _token;
Name = "";
anon = false;
}
}
}