mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-29 16:24:31 +00:00
32 lines
639 B
C
32 lines
639 B
C
|
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================//
|
|||
|
|
|||
|
#ifndef C_ASW_POINTCAMERA_H
|
|||
|
#define C_ASW_POINTCAMERA_H
|
|||
|
#ifdef _WIN32
|
|||
|
#pragma once
|
|||
|
#endif
|
|||
|
|
|||
|
#include "c_point_camera.h"
|
|||
|
|
|||
|
class C_ASW_PointCamera : public C_PointCamera
|
|||
|
{
|
|||
|
public:
|
|||
|
DECLARE_CLASS( C_ASW_PointCamera, C_PointCamera );
|
|||
|
DECLARE_CLIENTCLASS();
|
|||
|
|
|||
|
public:
|
|||
|
C_ASW_PointCamera();
|
|||
|
|
|||
|
void ApplyStimCamSettings();
|
|||
|
void SetActive( bool bActive ) { m_bActive = bActive; }
|
|||
|
|
|||
|
bool m_bSecurityCam;
|
|||
|
};
|
|||
|
|
|||
|
#endif // C_ASW_POINTCAMERA_H
|