Lists connected devices

This commit is contained in:
Riley Testut
2019-05-28 13:47:37 -07:00
parent 83ce13cd14
commit 6794a51c12
7 changed files with 378 additions and 20 deletions

View File

@@ -0,0 +1,21 @@
//
// ALTDeviceManager.h
// AltServer
//
// Created by Riley Testut on 5/24/19.
// Copyright © 2019 Riley Testut. All rights reserved.
//
#import <AltSign/AltSign.h>
NS_ASSUME_NONNULL_BEGIN
@interface ALTDeviceManager : NSObject
@property (class, nonatomic, readonly) ALTDeviceManager *sharedManager;
@property (nonatomic, readonly) NSArray<ALTDevice *> *connectedDevices;
@end
NS_ASSUME_NONNULL_END