1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 20:16:10 +08:00
Files
hl2sdk/game/client/c_func_brush.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
501 B
C
Raw Normal View History

//========= 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