15 lines
238 B
C
15 lines
238 B
C
|
//
|
||
|
// PSPNSApplicationDelegate.h
|
||
|
// PPSSPP
|
||
|
//
|
||
|
// Created by Serena on 22/04/2023.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
@interface PSPNSApplicationDelegate : NSObject <NSApplicationDelegate>
|
||
|
+(instancetype)sharedAppDelegate;
|
||
|
@end
|