This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef ICLASSMAP_H
#define ICLASSMAP_H
#ifdef _WIN32
#pragma once
#endif
class C_BaseEntity;
typedef C_BaseEntity* (*DISPATCHFUNCTION)( void );
abstract_class IClassMap
{
public:
virtual ~IClassMap() {}
virtual void Add( const char *mapname, const char *classname, int size, DISPATCHFUNCTION factory = 0 ) = 0;
virtual char const *Lookup( const char *classname ) = 0;
virtual C_BaseEntity *CreateEntity( const char *mapname ) = 0;
virtual int GetClassSize( const char *classname ) = 0;
};
extern IClassMap& GetClassMap();
#endif // ICLASSMAP_H