mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
20 lines
347 B
C
20 lines
347 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef SND_DMA_H
|
||
|
#define SND_DMA_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
|
||
|
extern bool snd_initialized;
|
||
|
|
||
|
bool SND_IsInGame( void );
|
||
|
|
||
|
#endif // SND_DMA_H
|