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