mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
35 lines
509 B
C++
35 lines
509 B
C++
#include "SoundSystem.hpp"
|
|
|
|
bool SoundSystem::isAvailable()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void SoundSystem::setListenerPos(float x, float y, float z)
|
|
{
|
|
}
|
|
|
|
void SoundSystem::setListenerAngle(float f)
|
|
{
|
|
}
|
|
|
|
void SoundSystem::load(const std::string& sound)
|
|
{
|
|
}
|
|
|
|
void SoundSystem::play(const std::string& sound)
|
|
{
|
|
}
|
|
|
|
void SoundSystem::pause(const std::string& sound)
|
|
{
|
|
}
|
|
|
|
void SoundSystem::stop(const std::string& sound)
|
|
{
|
|
}
|
|
|
|
void SoundSystem::playAt(const SoundDesc& sound, float x, float y, float z, float a, float b)
|
|
{
|
|
}
|