Exemple #1
0
        public void Deserialize(Stream input, VisualProxy parent)
        {
            this.Unknown0 = input.ReadValueU8();
            this.Unknown1 = new List <ResourceKey>();

            byte count = input.ReadValueU8();

            for (byte i = 0; i < count; i++)
            {
                if (parent.Version < 3)
                {
                    this.Unknown1.Add(input.ReadResourceKeyIGT());
                }
                else
                {
                    this.Unknown1.Add(parent.KeyTable.Keys[input.ReadValueS32()]);
                }
            }
        }
Exemple #2
0
 public void Serialize(Stream output, VisualProxy parent)
 {
     throw new NotImplementedException();
 }