mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
37 lines
604 B
C++
37 lines
604 B
C++
//========= 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
|