This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
cathook/include/soundcache.hpp
2019-06-03 20:41:50 +02:00

15 lines
221 B
C++

#pragma once
#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;