mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 00:25:58 +02:00
18 lines
252 B
Objective-C
18 lines
252 B
Objective-C
#import <LegacyComponents/SGraphListNode.h>
|
|
|
|
@implementation SGraphListNode
|
|
|
|
@synthesize items = _items;
|
|
|
|
- (id)initWithItems:(NSArray *)items
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_items = items;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|