mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-06 00:25:02 +00:00
34 lines
792 B
C++
34 lines
792 B
C++
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#ifndef TF_VIEWRENDER_H
|
|
#define TF_VIEWRENDER_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#if defined( _X360 )
|
|
|
|
#include "iviewrender.h"
|
|
#include "viewrender.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: Implements the interview to view rendering for the client .dll
|
|
//-----------------------------------------------------------------------------
|
|
class CTFViewRender : public CViewRender
|
|
{
|
|
public:
|
|
typedef CViewRender BaseClass;
|
|
|
|
CTFViewRender();
|
|
|
|
virtual void Render2DEffectsPostHUD( const CViewSetup &view );
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif //TF_VIEWRENDER_H
|