1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-12-12 00:08:50 +01:00
HLMetaModOfficial/sourcemm/CHLTVDirector.h
David Anderson 4dc43f3d08 Implemented factory hooks
Added commands: clear, load, pause, unload, unpause
Rewrote headers

--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%4010
2005-04-16 23:33:39 +00:00

36 lines
877 B
C++

/* ======== SourceMM ========
* Copyright (C) 2004-2005 Metamod:Source Development Team
* No warranties of any kind
*
* License: zlib/libpng
*
* Author(s): David "BAILOPAN" Anderson
* ============================
*/
#ifndef _INCLUDE_HLTVDIRECTOR_H
#define _INCLUDE_HLTVDIRECTOR_H
/**
* @brief Dummy class for IHLTVDirector
* @file CHLTVDirector.
*/
#include <eiface.h>
#include <ihltvdirector.h>
class CHLTVDirector : IHLTVDirector
{
public:
virtual bool IsActive() { return false; }
virtual void SetHLTVServer(IHLTVServer *hltv) { }
virtual IHLTVServer *GetHLTVServer() { return NULL; }
virtual int GetDirectorTick() { return 0; }
virtual int GetPVSEntity() { return 0; }
virtual Vector GetPVSOrigin() { return Vector(0, 0, 0); }
virtual float GetDelay() { return 0.0f; }
virtual const char**GetModEvents() { return NULL; }
};
#endif //_INCLUDE_HLTVDIRECTOR_H