public TextureAtlasAttachmentLoader(TextureAtlas atlas)
        {
            if (atlas == null)
            {
                throw new ArgumentException("atlas cannot be null.");
            }

            this.atlas = atlas;
        }
 public SkeletonJsonReader(TextureAtlas atlas)
 {
     attachmentLoader = new TextureAtlasAttachmentLoader(atlas);
 }