Ejemplo n.º 1
0
 public override void Deserialize(ICustomDataInput reader)
 {
     m_look = new EntityLook();
     m_look.Deserialize(reader);
     m_index = reader.ReadByte();
 }
Ejemplo n.º 2
0
 public SubEntity(byte bindingPointCategory, byte bindingPointIndex, EntityLook subEntityLook)
 {
     BindingPointCategory = bindingPointCategory;
     BindingPointIndex    = bindingPointIndex;
     SubEntityLook        = subEntityLook;
 }
Ejemplo n.º 3
0
 public IndexedEntityLook(EntityLook look, byte index)
 {
     m_look  = look;
     m_index = index;
 }