Esempio n. 1
0
 public FileCache(GameObject gameObject, string rootDirectory, ICacheEncoderDecoder encoderDecoder)
 {
     this.RootDirectory = rootDirectory;
     this.Encoder       = encoderDecoder;
     this.Decoder       = encoderDecoder;
     this.BuildQueue(gameObject);
 }
Esempio n. 2
0
 public FileCacheForTest(GameObject gameObject, string rootDirectory, ICacheEncoderDecoder encoderDecoder) :
     base(gameObject, rootDirectory, encoderDecoder)
 {
 }
Esempio n. 3
0
 public MemoryCache(ICacheEncoderDecoder encoderDecoder)
 {
     this.Encoder = encoderDecoder;
     this.Decoder = encoderDecoder;
 }