mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-19 09:41:29 +00:00
18 lines
255 B
Objective-C
18 lines
255 B
Objective-C
#import <LegacyComponents/SGraphObjectNode.h>
|
|
|
|
@implementation SGraphObjectNode
|
|
|
|
@synthesize object = _object;
|
|
|
|
- (id)initWithObject:(id)object
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_object = object;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|