/* HBPlayerHUDController.h $
This file is part of the HandBrake source code.
Homepage: .
It may be used under the terms of the GNU General Public License. */
#import
#import "HBPlayer.h"
#import "HBHUD.h"
@protocol HBPlayerHUDControllerDelegate
- (void)stopPlayer;
@end
@interface HBPlayerHUDController : NSViewController
@property (nonatomic, nullable, assign) id delegate;
@property (nonatomic, nullable) id player;
@end