1
0

added cProtocol function to pass xp to client

This commit is contained in:
Daniel O'Brien
2013-11-15 22:42:09 +11:00
parent af17faac45
commit 1b2e6e7473
7 changed files with 44 additions and 28 deletions

View File

@@ -1873,6 +1873,15 @@ void cClientHandle::SendRespawn(void)
void cClientHandle::SendSetExperience(void)
{
m_Protocol->SendSetExperience();
}
void cClientHandle::SendSoundEffect(const AString & a_SoundName, int a_SrcX, int a_SrcY, int a_SrcZ, float a_Volume, float a_Pitch)
{
m_Protocol->SendSoundEffect(a_SoundName, a_SrcX, a_SrcY, a_SrcZ, a_Volume, a_Pitch);