mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 19:25:16 +00:00
19 lines
409 B
C
19 lines
409 B
C
|
#pragma once
|
||
|
|
||
|
#include "al/audio/AudioKeeper.h"
|
||
|
#include "al/message/IUseMessageSystem.h"
|
||
|
|
||
|
namespace al {
|
||
|
class TalkMessageVoicePlayer {
|
||
|
public:
|
||
|
TalkMessageVoicePlayer();
|
||
|
|
||
|
void start(al::IUseMessageSystem const*, al::IUseAudioKeeper const*, char16_t const*, int);
|
||
|
void stop(void);
|
||
|
void update(void);
|
||
|
void calcVoicePitch(int);
|
||
|
bool isPlaying(void) const;
|
||
|
|
||
|
char size[0x440];
|
||
|
};
|
||
|
}
|