You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
501 B
25 lines
501 B
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $Workfile: $
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef MODELINFO_H
|
|
#define MODELINFO_H
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "engine/ivmodelinfo.h"
|
|
|
|
|
|
extern IVModelInfo *modelinfo; // server version
|
|
#ifndef DEDICATED
|
|
extern IVModelInfoClient *modelinfoclient; // client version
|
|
#endif
|
|
|
|
|
|
#endif // MODELINFO_H
|