コード例 #1
0
        public static DecayEntity DeserializeLength(Stream stream, int length)
        {
            DecayEntity decayEntity = Pool.Get <DecayEntity>();

            DecayEntity.DeserializeLength(stream, length, decayEntity, false);
            return(decayEntity);
        }
コード例 #2
0
 public virtual void ReadFromStream(Stream stream, int size, bool isDelta = false)
 {
     DecayEntity.DeserializeLength(stream, size, this, isDelta);
 }