mirror of
https://github.com/Toxblh/MTMR.git
synced 2026-01-13 02:08:38 +00:00
18 lines
287 B
Objective-C
18 lines
287 B
Objective-C
//
|
|
// TouchBarSupport.h
|
|
// MTMR
|
|
//
|
|
// Created by Anton Palgunov on 08/04/2018.
|
|
// Copyright © 2018 Anton Palgunov. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface MediaKeys : NSObject
|
|
|
|
+ (void)decreaseVolume;
|
|
+ (void)increaseVolume;
|
|
+ (void)muteVolume;
|
|
|
|
@end
|