Files
GSFV2/ios/Classes/Headers/ICSkipSoundSettingData.h
2024-04-10 12:51:20 +05:30

35 lines
1006 B
Objective-C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// ICSkipSoundSettingData.h
// ICDeviceManager
//
// Created by icomon on 2022/3/16.
// Copyright © 2022 Symons. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ICConstant.h"
NS_ASSUME_NONNULL_BEGIN
@interface ICSkipSoundSettingData : NSObject
/// 是否开启语音开关
@property (nonatomic, assign) BOOL soundOn;
/// 语音类型
@property (nonatomic, assign) ICSkipSoundType soundType;
/// 声音大小
@property (nonatomic, assign) NSUInteger soundVolume;
/// 满分开关
@property (nonatomic, assign) BOOL fullScoreOn;
/// 满分速率
@property (nonatomic, assign) NSUInteger fullScoreBPM;
/// 语音间隔模式
@property (nonatomic, assign) ICSkipSoundMode soundMode;
/// 模式参数
@property (nonatomic, assign) NSUInteger modeParam;
/// 是否自动停止播放YES:APP下发开始后跳绳不会播放语音 NO:跳绳和APP都会播放语音
@property (nonatomic, assign) BOOL isAutoStop;
@end
NS_ASSUME_NONNULL_END