Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
799 B

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#ifndef TF_VIEWRENDER_H
#define TF_VIEWRENDER_H
#ifdef _WIN32
#pragma once
#endif
#include "iviewrender.h"
#include "viewrender.h"
//-----------------------------------------------------------------------------
// Purpose: Implements the interview to view rendering for the client .dll
//-----------------------------------------------------------------------------
class CTFViewRender : public CViewRender
{
DECLARE_CLASS( CTFViewRender, CViewRender );
public:
CTFViewRender();
virtual void Init( void );
virtual void Render2DEffectsPostHUD( const CViewSetup &view );
};
#endif //TF_VIEWRENDER_H