mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-05-01 04:07:51 +02:00
10 lines
172 B
Objective-C
10 lines
172 B
Objective-C
#import <LegacyComponents/SGraphNode.h>
|
|
|
|
@interface SGraphListNode : SGraphNode
|
|
|
|
@property (nonatomic, strong) NSArray *items;
|
|
|
|
- (id)initWithItems:(NSArray *)items;
|
|
|
|
@end
|