internal DXTileSet(DXGraphics graphics, IFile imageFile, IFile maskFile, DetailLevelType detailLevel) { this.graphics = graphics; this.imageFile = imageFile; this.maskFile = maskFile; this.detailLevel = detailLevel; }
internal DXTileSet(DXGraphics graphics, IFile imageFile, DetailLevelType detailLevel) : this(graphics, imageFile, null, detailLevel) { }