Beispiel #1
0
        public static void AddSerializableWispObject(ref byte[] data, Pointer curPointer, ISerializableWispObject c)
        {
            uint type = c.TypeHash;

            AddUInt(ref data, curPointer, type);
            c.Serialize(ref data, curPointer);
        }
Beispiel #2
0
 public static void AddSerializableWispObject(ref byte[] data, Pointer curPointer, ISerializableWispObject c)
 {
     uint type = c.TypeHash;
     AddUInt(ref data, curPointer, type);
     c.Serialize(ref data, curPointer);
 }