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.
24 lines
476 B
24 lines
476 B
//========= Copyright © 1996-2008, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//=============================================================================//
|
|
|
|
#ifndef C_FUNC_BRUSH_H
|
|
#define C_FUNC_BRUSH_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
class C_FuncBrush : public C_BaseEntity
|
|
{
|
|
public:
|
|
DECLARE_CLASS( C_FuncBrush, C_BaseEntity );
|
|
DECLARE_CLIENTCLASS();
|
|
|
|
void OnDataChanged( DataUpdateType_t type );
|
|
|
|
private:
|
|
};
|
|
|
|
#endif // C_FUNC_BRUSH_H
|
|
|