mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
* Initial commit.
:)
This commit is contained in:
34
source/Sound/SoundSystem.cpp
Normal file
34
source/Sound/SoundSystem.cpp
Normal file
@@ -0,0 +1,34 @@
|
||||
#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)
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user