mirror of
https://github.com/FWGS/hlsdk-xash3d
synced 2024-11-10 20:29:35 +01:00
26 lines
561 B
C++
26 lines
561 B
C++
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#if !defined( GAMESTUDIOMODELRENDERER_H )
|
|
#define GAMESTUDIOMODELRENDERER_H
|
|
#if defined( _WIN32 )
|
|
#pragma once
|
|
#endif
|
|
|
|
/*
|
|
====================
|
|
CGameStudioModelRenderer
|
|
|
|
====================
|
|
*/
|
|
class CGameStudioModelRenderer : public CStudioModelRenderer
|
|
{
|
|
public:
|
|
CGameStudioModelRenderer( void );
|
|
};
|
|
|
|
#endif // GAMESTUDIOMODELRENDERER_H
|