RTVoiceIOSBridge.h
1 //
2 // RTVoiceIOSBridge.h
3 // Version 2023.2.4
4 //
5 // © 2016-2024 crosstales LLC (https://www.crosstales.com)
6 //
7 #ifndef RTVoiceIOSBridge_h
8 #define RTVoiceIOSBridge_h
9 #import <AVFoundation/AVFoundation.h>
10 
11 @interface RTVoiceIOSBridge:NSObject<AVSpeechSynthesizerDelegate>
12 + (void)setVoices;
13 + (void)speak:(NSString *)id text:(NSString *)text rate:(float)rate pitch:(float)pitch volume:(float)volume;
14 + (void)stop;
15 @end
16 
17 
18 #ifdef __cplusplus
19 extern "C" {
20  void UnitySendMessage(const char *, const char *, const char *);
21 }
22 #endif
23 
24 #endif
Definition: RTVoiceIOSBridge.h:11
void stop()
Definition: RTVoiceIOSBridge.mm:113
void setVoices()
Definition: RTVoiceIOSBridge.mm:126