コード例 #1
0
        public TextureAtlasAttachmentLoader(TextureAtlas atlas)
        {
            if (atlas == null)
            {
                throw new ArgumentException("atlas cannot be null.");
            }

            this.atlas = atlas;
        }
コード例 #2
0
 public SkeletonJsonReader(TextureAtlas atlas)
 {
     attachmentLoader = new TextureAtlasAttachmentLoader(atlas);
 }