mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 14:46:53 +00:00
20 lines
482 B
C
20 lines
482 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose: Client side view model implementation. Responsible for drawing
|
||
|
// the view model.
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef C_BASEVIEWMODEL_H
|
||
|
#define C_BASEVIEWMODEL_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "c_baseanimating.h"
|
||
|
#include "utlvector.h"
|
||
|
#include "baseviewmodel_shared.h"
|
||
|
|
||
|
#endif // C_BASEVIEWMODEL_H
|