1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 09:27:55 +01:00
Telegram/Telegraph/TGModernConversationTitleIcon.m
2014-07-10 18:11:09 +04:00

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