mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-12-12 00:08:50 +01:00
118d4a85ff
--HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%408
36 lines
871 B
C++
36 lines
871 B
C++
/* ======== SourceMM ========
|
|
* Copyright (C) 2004-2005 SourceMM 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
|