Exemplo n.º 1
0
 public Gen3SerializationContext(Stream stream, GameCacheGen3 gameCache, CachedTagGen3 tag)
 {
     GameCache = gameCache;
     Tag       = tag;
     Stream    = stream;
 }
Exemplo n.º 2
0
        //
        // public methods specific to gen3
        //

        public T Deserialize <T>(Stream stream, CachedTagGen3 instance) =>
        Deserialize <T>(new Gen3SerializationContext(stream, this, instance));
Exemplo n.º 3
0
 public object Deserialize(Stream stream, CachedTagGen3 instance) =>
 Deserialize(new Gen3SerializationContext(stream, this, instance), TagDefinition.Find(instance.Group.Tag));
Exemplo n.º 4
0
 //TODO: Implement serialization for gen3
 public void Serialize(Stream stream, CachedTagGen3 instance, object definition)
 {
     throw new NotImplementedException();
 }