blob: e52f15293cf9a797a4b6330d035bdd19767e904b (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
//=======================================================================================//
#ifndef ITHINKER_H
#define ITHINKER_H
#ifdef _WIN32
#pragma once
#endif
//----------------------------------------------------------------------------------------
#include "interface.h"
//----------------------------------------------------------------------------------------
class IThinker : public IBaseInterface
{
public:
virtual void Think() = 0;
virtual void PostThink() = 0;
virtual bool ShouldThink() const = 0;
};
//----------------------------------------------------------------------------------------
#endif // ITHINKER_H
|