14 lines
208 B
C++
14 lines
208 B
C++
#include "common.hpp"
|
|
struct CSndInfo_t
|
|
{
|
|
Vector m_pOrigin;
|
|
int m_nSoundSource;
|
|
};
|
|
|
|
struct SoundStruct
|
|
{
|
|
CSndInfo_t sound;
|
|
Timer last_update;
|
|
};
|
|
extern std::map<int, SoundStruct> sound_cache;
|