diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /hammer/modelfactory.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'hammer/modelfactory.h')
| -rw-r--r-- | hammer/modelfactory.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/hammer/modelfactory.h b/hammer/modelfactory.h new file mode 100644 index 0000000..492a74a --- /dev/null +++ b/hammer/modelfactory.h @@ -0,0 +1,36 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $Workfile: $ +// $Date: $ +// +//----------------------------------------------------------------------------- +// $Log: $ +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef MODELFACTORY_H +#define MODELFACTORY_H +#pragma once + + +class CMapClass; + + +enum ModelType_t +{ + ModelTypeStudio = 0 +}; + + +class CModelFactory +{ + public: + + static CMapClass *CreateModel(ModelType_t eModelType, const char *pszModelData); +}; + + +#endif // MODELFACTORY_H |