mirror of
https://github.com/averello/TimelineAnimations.git
synced 2026-03-01 18:23:27 +01:00
30 lines
725 B
Objective-C
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
|