This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/server/ents/baseworld.h
2022-06-27 01:14:40 +03:00

20 lines
476 B
C++

//=======================================================================
// Copyright (C) XashXT Group 2006
//=======================================================================
#ifndef BASEWORLD_H
#define BASEWORLD_H
class CWorld : public CBaseEntity
{
public:
void Spawn( void );
void Precache( void );
void KeyValue( KeyValueData *pkvd );
void PostActivate( void );
};
extern BOOL g_startSuit;
extern CWorld *g_pWorld;
#endif //BASEWORLD_H