mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-03-11 10:49:04 +00:00
25 lines
394 B
Objective-C
25 lines
394 B
Objective-C
//
|
|
// ASDisplayNodeTipState.m
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Adlai Holler on 4/12/17.
|
|
// Copyright © 2017 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import "ASDisplayNodeTipState.h"
|
|
|
|
@interface ASDisplayNodeTipState ()
|
|
@end
|
|
|
|
@implementation ASDisplayNodeTipState
|
|
|
|
- (instancetype)initWithNode:(ASDisplayNode *)node
|
|
{
|
|
if (self = [super init]) {
|
|
_node = node;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|