mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
24 lines
414 B
Objective-C
24 lines
414 B
Objective-C
//
|
|
// ALTPluginService.h
|
|
// AltPlugin
|
|
//
|
|
// Created by Riley Testut on 11/14/19.
|
|
// Copyright © 2019 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class ALTAnisetteData;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ALTPluginService : NSObject
|
|
|
|
@property (class, nonatomic, readonly) ALTPluginService *sharedService;
|
|
|
|
- (ALTAnisetteData *)requestAnisetteData;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|