17 lines
253 B
Objective-C
17 lines
253 B
Objective-C
//
|
|
// ViewController.h
|
|
// ShenQi
|
|
//
|
|
// Created by Yao on 2023/4/4.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ViewController : UIViewController
|
|
|
|
@property (nonatomic, strong) NSString *gameURLString;
|
|
@property (nonatomic, assign) BOOL isPresent;
|
|
|
|
@end
|
|
|