Exemple #1
0
 protected TileProducerBase(ITextureOperations <TTexture> textureOperations,
                            ITextureAtlasBuilder <TTexture> atlasBuilder)
 {
     this.textureOperations = textureOperations;
     textureAtlas           = atlasBuilder ?? throw new ArgumentNullException();
 }
Exemple #2
0
 public MonoGameTileProducer(ITextureOperations <XnaTexture> textureOperations, ITextureAtlasBuilder <XnaTexture> atlasBuilder) : base(textureOperations, atlasBuilder)
 {
 }