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/VFNode.cs

23 lines
320 B
C#

using System.Collections.Generic;
namespace GMAssetCompiler
{
public class VFNode
{
public int Count;
public string Name;
public List<LexTree> pFunction;
public bool AlreadyRemoved;
public VFNode(string _name)
{
Name = _name;
AlreadyRemoved = false;
pFunction = new List<LexTree>();
}
}
}