Files
mcpe/source/Sound/SoundSystem.cpp
iProgramInCpp 9642818a88 * Initial commit.
:)
2023-07-30 22:22:02 +03:00

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)
{
}