Fanx.Fcode.FPod.readTypeMeta C# (CSharp) Method

readTypeMeta() private method

private readTypeMeta ( FStore input ) : void
input FStore
return void
        private void readTypeMeta(FStore.Input input)
        {
            m_types = new FType[input.u2()];
              for (int i=0; i<m_types.Length; i++)
              {
            m_types[i] = new FType(this).readMeta(input);
            m_types[i].m_hollow = true;
              }
              input.Close();
        }