28 lines
962 B
Objective-C
28 lines
962 B
Objective-C
//
|
|
// XPTurboModeConstants.m
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/1/13.
|
|
//
|
|
|
|
#import "XPTurboModeConstants.h"
|
|
|
|
// MARK: - 缓存 Key 生成函数实现
|
|
NSString *kTurboGiftEffectsEnabledKey(NSString *roomId) {
|
|
return [NSString stringWithFormat:@"TurboGiftEffects_%@", roomId];
|
|
}
|
|
|
|
NSString *kTurboGlobalGiftScreenEnabledKey(NSString *roomId) {
|
|
return [NSString stringWithFormat:@"TurboGlobalGiftScreen_%@", roomId];
|
|
}
|
|
|
|
NSString *kTurboGlobalGameScreenEnabledKey(NSString *roomId) {
|
|
return [NSString stringWithFormat:@"TurboGlobalGameScreen_%@", roomId];
|
|
}
|
|
|
|
// MARK: - 通知名称常量定义
|
|
NSString *const kTurboGiftEffectsEnabledChanged = @"kTurboGiftEffectsEnabledChanged";
|
|
NSString *const kTurboGlobalGiftScreenEnabledChanged = @"kTurboGlobalGiftScreenEnabledChanged";
|
|
NSString *const kTurboGlobalGameScreenEnabledChanged = @"kTurboGlobalGameScreenEnabledChanged";
|
|
NSString *const kTurboModeButtonStateChanged = @"kTurboModeButtonStateChanged";
|