2023-10-03 14:23:56 +00:00
|
|
|
|
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
2020-04-22 16:56:21 +00:00
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
//=============================================================================//
|
|
|
|
|
|
|
|
|
|
#ifndef SOLIDSETDEFAULTS_H
|
|
|
|
|
#define SOLIDSETDEFAULTS_H
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#pragma once
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// solid_t parsing
|
|
|
|
|
class CSolidSetDefaults : public IVPhysicsKeyHandler
|
|
|
|
|
{
|
|
|
|
|
public:
|
2023-10-03 14:23:56 +00:00
|
|
|
|
virtual void ParseKeyValue( void *pData, const char *pKey, const char *pValue ) {}
|
2020-04-22 16:56:21 +00:00
|
|
|
|
virtual void SetDefaults( void *pData );
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern CSolidSetDefaults g_SolidSetup;
|
|
|
|
|
|
|
|
|
|
#endif // SOLIDSETDEFAULTS_H
|