SuperMarioOdysseyOnline/include/al/layout/TalkMessageVoicePlayer.h
2022-06-16 14:33:18 -07:00

19 lines
No EOL
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];
};
}