コード例 #1
0
ファイル: FSlot.cs プロジェクト: nomit007/f4
 protected void readCommon(FStore.Input input)
 {
     m_name  = input.name();
       m_flags = input.u4();
 }
コード例 #2
0
ファイル: FType.cs プロジェクト: nomit007/f4
 //////////////////////////////////////////////////////////////////////////
 // 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;
 }