19 lines
400 B
Plaintext
19 lines
400 B
Plaintext
//
|
|
// MSRoomGameWebVC.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2024/4/28.
|
|
//
|
|
|
|
#import "BaseViewController.h"
|
|
#import <WebKit/WebKit.h>
|
|
#import "RoomHostDelegate.h"
|
|
#import "ActivityInfoModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MSRoomGameWebVC : BaseViewController
|
|
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate gameModel:(ActivityInfoModel *)gameModel;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|