mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-25 21:52:31 +00:00
23 lines
434 B
Objective-C
23 lines
434 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// Moonlight TV
|
|
//
|
|
// Created by Diego Waxemberg on 8/25/18.
|
|
// Copyright © 2018 Moonlight Game Streaming Project. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <CoreData/CoreData.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
@property (readonly, strong) NSPersistentContainer *persistentContainer;
|
|
|
|
- (void)saveContext;
|
|
|
|
|
|
@end
|
|
|