Counter Strike : Global Offensive Source Code
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

  1. //========= Copyright � 1996-2008, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //=============================================================================//
  5. #ifndef C_FUNC_BRUSH_H
  6. #define C_FUNC_BRUSH_H
  7. #ifdef _WIN32
  8. #pragma once
  9. #endif
  10. class C_FuncBrush : public C_BaseEntity
  11. {
  12. public:
  13. DECLARE_CLASS( C_FuncBrush, C_BaseEntity );
  14. DECLARE_CLIENTCLASS();
  15. void OnDataChanged( DataUpdateType_t type );
  16. private:
  17. };
  18. #endif // C_FUNC_BRUSH_H