コード例 #1
0
ファイル: IndexedEntityLook.cs プロジェクト: xvolks/Cookie
 public override void Deserialize(ICustomDataInput reader)
 {
     m_look = new EntityLook();
     m_look.Deserialize(reader);
     m_index = reader.ReadByte();
 }
コード例 #2
0
 public SubEntity(byte bindingPointCategory, byte bindingPointIndex, EntityLook subEntityLook)
 {
     BindingPointCategory = bindingPointCategory;
     BindingPointIndex    = bindingPointIndex;
     SubEntityLook        = subEntityLook;
 }
コード例 #3
0
ファイル: IndexedEntityLook.cs プロジェクト: xvolks/Cookie
 public IndexedEntityLook(EntityLook look, byte index)
 {
     m_look  = look;
     m_index = index;
 }