mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
24 lines
678 B
C
24 lines
678 B
C
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef ENGINESOUNDINTERNAL_H
|
|
#define ENGINESOUNDINTERNAL_H
|
|
|
|
#if defined( _WIN32 )
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "engine/IEngineSound.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Method to get at the singleton implementations of the engine sound interfaces
|
|
//-----------------------------------------------------------------------------
|
|
IEngineSound* EngineSoundClient();
|
|
IEngineSound* EngineSoundServer();
|
|
|
|
#endif // SOUNDENGINEINTERNAL_H
|