blob: 733c1da66e7a428317ffa6eb7af96343a30739f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
//=======================================================================================//
#ifndef ITHINKMANAGER_H
#define ITHINKMANAGER_H
#ifdef _WIN32
#pragma once
#endif
//----------------------------------------------------------------------------------------
#include "interface.h"
//----------------------------------------------------------------------------------------
class IThinker;
//----------------------------------------------------------------------------------------
class IThinkManager : public IBaseInterface
{
public:
virtual void AddThinker( IThinker *pThinker ) = 0;
virtual void RemoveThinker( IThinker *pThinker ) = 0;
virtual void Think() = 0;
};
//----------------------------------------------------------------------------------------
#endif // ITHINKMANAGER_H
|