mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 14:46:53 +00:00
17 lines
323 B
C
17 lines
323 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef SND_IO_H
|
||
|
#define SND_IO_H
|
||
|
#pragma once
|
||
|
|
||
|
class IFileReadBinary;
|
||
|
|
||
|
extern IFileReadBinary *g_pSndIO;
|
||
|
|
||
|
#endif // SND_IO_H
|