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.
13 lines
362 B
13 lines
362 B
//========= Copyright © Valve Corporation, All rights reserved. ============//
|
|
#ifndef MATHLIB_SOFTBODY_INL_HDR
|
|
#define MATHLIB_SOFTBODY_INL_HDR
|
|
|
|
#include "mathlib/softbodyenvironment.h"
|
|
inline void CSoftbody::Shutdown()
|
|
{
|
|
m_pEnvironment->Unregister( this );
|
|
MemAlloc_FreeAligned( m_pParticles );
|
|
m_StickyBuffer.Clear();
|
|
}
|
|
|
|
#endif // MATHLIB_SOFTBODY_INL_HDR
|