Exemplo n.º 1
0
 public TextureAtlasDeltas(string imagePath, ZipStorer zipStore, SerializableDictionary <int, DeltaItem> deltaDictionary) : base(imagePath, zipStore)
 {
     DeltaDictionary       = deltaDictionary;
     _deltaIndexDictionary = new Dictionary <string, int[]>();
     _cachedRectDictionary = new Dictionary <int, System.Drawing.Rectangle>();
 }
Exemplo n.º 2
0
 public TextureAtlasTiles(string imagePath, ZipStorer zipStore) : base(imagePath, zipStore)
 {
     //
 }
Exemplo n.º 3
0
 public TextureAtlasSprites(string imagePath, ZipStorer zipStore, SerializableDictionary <int, SpriteItem> spriteDictionary) : base(imagePath, zipStore)
 {
     SpriteDictionary = spriteDictionary;
 }
Exemplo n.º 4
0
 protected TextureAtlas(string imagePath, ZipStorer zipStore)
     : this()
 {
     ImagePath = imagePath;
     ZipStore  = zipStore;
 }