Files
peko-ios/YuMi/Modules/YMRoom/View/MoreView/XPTurboModeConstants.m

28 lines
962 B
Mathematica
Raw Normal View History

//
// 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";