mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
16 lines
226 B
Objective-C
16 lines
226 B
Objective-C
#import "TGModernConversationTitleIcon.h"
|
|
|
|
@implementation TGModernConversationTitleIcon
|
|
|
|
- (instancetype)init
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_offsetWeight = 1.0f;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|