SWFProcessing.SWFModeller.ABC.AbcCode.AbcCode C# (CSharp) Method

AbcCode() public method

Initializes a new instance of the AbcCode class.
public AbcCode ( ) : System
return System
        public AbcCode()
        {
            this.IntConsts = null;
            this.UIntConsts = null;
            this.StringConsts = null;
            this.DoubleConsts = null;

            this.scripts = new List<Script>();
            this.classes = new List<AS3ClassDef>();
            this.methods = new List<Method>();

            this.nsConsts = new List<Namespace>();
            this.nsConsts.Add(Namespace.GlobalNS);

            this.multinameConsts = new List<Multiname>();
            this.multinameConsts.Add(Multiname.GlobalMultiname);

            this.nsSetConsts = new List<NamespaceSet>();
            this.nsSetConsts.Add(NamespaceSet.EmptySet);
        }