Beispiel #1
0
 protected void readCommon(FStore.Input input)
 {
     m_name  = input.name();
       m_flags = input.u4();
 }
Beispiel #2
0
 //////////////////////////////////////////////////////////////////////////
 // Meta IO
 //////////////////////////////////////////////////////////////////////////
 public FType readMeta(FStore.Input input)
 {
     m_self  = input.u2();
       m_base  = input.u2();
       m_mixins = new int[input.u2()];
       for (int i=0; i<m_mixins.Length; i++) m_mixins[i] = input.u2();
       m_flags  = input.u4();
       return this;
 }