CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/ios/PPSSPPUIApplication.h
Views: 1401
1
//
2
// PPSSPPUIApplication.h
3
// PPSSPP
4
//
5
// Created by xieyi on 2017/9/4.
6
//
7
//
8
9
#ifndef PPSSPPUIApplication_h
10
#define PPSSPPUIApplication_h
11
12
#import <UIKit/UIKit.h>
13
14
@interface PPSSPPUIApplication : UIApplication
15
{
16
}
17
18
@property (nonatomic, strong) UISelectionFeedbackGenerator *feedbackGenerator;
19
20
@end
21
22
23
#endif /* PPSSPPUIApplication_h */
24
25