csgo-2018-source/common/engine_model_client.h
2021-07-24 21:11:47 -07:00

25 lines
809 B
C

//========= Copyright © 1996-2016, Valve Corporation, All rights reserved. ============//
//
// Purpose: Sharing model structures and flags between engine and client
//
//=============================================================================//
#ifndef ENGINE_MODEL_CLIENT_H
#define ENGINE_MODEL_CLIENT_H
#ifdef _WIN32
#pragma once
#endif
#define ENGINE_MODEL_CLIENT_MODELFLAG_RENDER_DISABLED 0x0080 // excluded for compliance with government regulations
#if PLATFORM_64BITS
#define ENGINE_MODEL_CLIENT_MODELT_OFFSET_FLAGS 280
#else
#define ENGINE_MODEL_CLIENT_MODELT_OFFSET_FLAGS 276
#endif
inline int EngineModelClientFlags( const void *pModel ) { return *reinterpret_cast< const int * >( ((const char*)pModel) + ENGINE_MODEL_CLIENT_MODELT_OFFSET_FLAGS ); }
#endif // ENGINE_MODEL_CLIENT_H