Exemplo n.º 1
0
        internal void Bake()
        {
            if (next != null)
            {
                next.Bake();
            }
            if (child != null)
            {
                child.Bake();
            }

            int cc = ChildCount;
            int tc = TotalStateCount;
            int ac = AcceptStateCount;

            bakeinfo = new BakeInfo(cc, tc, ac);
        }