19 lines
389 B
Objective-C
19 lines
389 B
Objective-C
//
|
|
// IJSVGPatternLayer.h
|
|
// IJSVGExample
|
|
//
|
|
// Created by Curtis Hard on 07/01/2017.
|
|
// Copyright © 2017 Curtis Hard. All rights reserved.
|
|
//
|
|
|
|
#import "IJSVGLayer.h"
|
|
#import "IJSVGPattern.h"
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
@interface IJSVGPatternLayer : IJSVGLayer
|
|
|
|
@property (nonatomic, retain) IJSVGLayer* pattern;
|
|
@property (nonatomic, retain) IJSVGPattern* patternNode;
|
|
|
|
@end
|