14 lines
216 B
Objective-C
14 lines
216 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// HiBit
|
|
//
|
|
// Created by HI_LOSER on 2024/6/7.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
@property (strong, nonatomic) UIWindow * window;
|
|
@end
|
|
|