mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-06-20 18:24:43 +00:00
19 lines
395 B
Plaintext
19 lines
395 B
Plaintext
// Sources/SubcodecObjC/SCSpriteRegion.mm
|
|
#import "SCSpriteRegion.h"
|
|
|
|
@implementation SCSpriteRegion
|
|
|
|
- (instancetype)initWithSlot:(int)slot
|
|
colorRect:(CGRect)colorRect
|
|
alphaRect:(CGRect)alphaRect {
|
|
self = [super init];
|
|
if (self) {
|
|
_slot = slot;
|
|
_colorRect = colorRect;
|
|
_alphaRect = alphaRect;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|