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.

17 lines
455 B

  1. #include "cbase.h"
  2. #include "c_func_brush.h"
  3. #include "toolframework_client.h"
  4. // memdbgon must be the last include file in a .cpp file!!!
  5. #include "tier0/memdbgon.h"
  6. IMPLEMENT_CLIENTCLASS_DT( C_FuncBrush, DT_FuncBrush, CFuncBrush )
  7. END_RECV_TABLE()
  8. void C_FuncBrush::OnDataChanged( DataUpdateType_t type )
  9. {
  10. BaseClass::OnDataChanged( type );
  11. bool bCreate = (type == DATA_UPDATE_CREATED) ? true : false;
  12. VPhysicsShadowDataChanged(bCreate, this);
  13. }