mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-13 12:19:13 +00:00
1
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
//=======================================================================================//
|
||||
|
||||
#ifndef FLUSHMANAGER_H
|
||||
#define FLUSHMANAGER_H
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
//----------------------------------------------------------------------------------------
|
||||
|
||||
#include "utllinkedlist.h"
|
||||
#include "ithinkmanager.h"
|
||||
|
||||
//----------------------------------------------------------------------------------------
|
||||
|
||||
class IThinker;
|
||||
|
||||
//----------------------------------------------------------------------------------------
|
||||
|
||||
//
|
||||
// Generic think manager - only worries about CGenericPersistentManagers for
|
||||
// now though - not a CGenericPersistentManager's Think() can result in subtle
|
||||
// bugs where files don't get saved properly.
|
||||
//
|
||||
class CThinkManager : public IThinkManager
|
||||
{
|
||||
public:
|
||||
virtual void AddThinker( IThinker *pThinker );
|
||||
virtual void RemoveThinker( IThinker *pThinker );
|
||||
|
||||
void Think();
|
||||
|
||||
CUtlLinkedList< IThinker *, int > m_lstManagers;
|
||||
};
|
||||
|
||||
//----------------------------------------------------------------------------------------
|
||||
|
||||
extern IThinkManager *g_pThinkManager;
|
||||
|
||||
//----------------------------------------------------------------------------------------
|
||||
|
||||
#endif // FLUSHMANAGER_H
|
||||
Reference in New Issue
Block a user