mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-09-25 01:51:20 +00:00
refactor: unglob std::shared_ptr
This commit is contained in:
@@ -984,7 +984,7 @@ void SoundEngine::update3DPosition(SoundEngine::soundInfo *pInfo, bool bPlaceEmi
|
||||
XACT3DApply( &m_DSPSettings, pInfo->pCue);
|
||||
}
|
||||
|
||||
void SoundEngine::tick(shared_ptr<Mob> *players, float a)
|
||||
void SoundEngine::tick(std::shared_ptr<Mob> *players, float a)
|
||||
{
|
||||
if( m_pXACT3Engine == NULL ) return;
|
||||
|
||||
|
||||
@@ -86,7 +86,7 @@ public:
|
||||
virtual void updateSystemMusicPlaying(bool isPlaying);
|
||||
virtual void updateSoundEffectVolume(float fVal);
|
||||
virtual void init(Options *);
|
||||
virtual void tick(shared_ptr<Mob> *players, float a); // 4J - updated to take array of local players rather than single one
|
||||
virtual void tick(std::shared_ptr<Mob> *players, float a); // 4J - updated to take array of local players rather than single one
|
||||
virtual void add(const wstring& name, File *file);
|
||||
virtual void addMusic(const wstring& name, File *file);
|
||||
virtual void addStreaming(const wstring& name, File *file);
|
||||
|
||||
Reference in New Issue
Block a user