30 lines
540 B
C
30 lines
540 B
C
![]() |
//
|
|||
|
// XPTurboModeTipsManager.h
|
|||
|
// YuMi
|
|||
|
//
|
|||
|
// Created by AI Assistant
|
|||
|
// Copyright © 2024 YuMi. All rights reserved.
|
|||
|
//
|
|||
|
|
|||
|
#import <Foundation/Foundation.h>
|
|||
|
#import "XPTurboModeTipsView.h"
|
|||
|
|
|||
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
|
|||
|
@interface XPTurboModeTipsManager : NSObject <XPTurboModeTipsViewDelegate>
|
|||
|
|
|||
|
+ (instancetype)sharedManager;
|
|||
|
|
|||
|
// 在房间中启动 Tips 监听
|
|||
|
- (void)startTipsMonitoringInRoom;
|
|||
|
|
|||
|
// 停止 Tips 监听
|
|||
|
- (void)stopTipsMonitoring;
|
|||
|
|
|||
|
// 手动显示 Tips(用于测试)
|
|||
|
- (void)showTipsManually;
|
|||
|
|
|||
|
@end
|
|||
|
|
|||
|
NS_ASSUME_NONNULL_END
|