Files
TimelineAnimations-mirror/TimelineAnimations/Classes/objc/Helper/TimelineAnimationNotifyBlockInfo.h
Georges Boumis c6b2e8a7a6 add code v2.44
2017-09-06 15:34:08 +03:00

30 lines
725 B
Objective-C

//
// TimelineAnimationNotifyBlockInfo.h
// TimelineAnimations
//
// Created by Georges Boumis on 15/12/2016.
// Copyright (c) 2016-2017 AbZorba Games. All rights reserved.
//
@import Foundation;
#import "TimelineAnimation.h"
NS_ASSUME_NONNULL_BEGIN
@interface TimelineAnimationNotifyBlockInfo : NSObject
@property (nonatomic, readonly, getter=isSoundNotification) BOOL soundNotification;
@property (nonatomic, nullable, weak) id<TimelineAudio> sound;
@property (nonatomic, copy, readonly) TimelineAnimationNotifyBlock block;
+ (instancetype)infoWithBlock:(TimelineAnimationNotifyBlock)block
isSoundNotification:(BOOL)isSound;
- (void)call:(BOOL)mute;
- (NSString *)description;
@end
NS_ASSUME_NONNULL_END