mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
28 lines
720 B
C++
28 lines
720 B
C++
//========= 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
|