Kawe Mazidjatari f961b3b013 DataCache: cleanup & improvements
* follow naming convention of studio.h.
* renamed studiocache_t to studiomodelcache_t.
* merged 'ModelHeader' struct with studiomodelcache_t.
* add 'physfile_t' structure.
2024-04-05 17:24:29 +02:00

23 lines
455 B
C
Raw Permalink Blame History

//===== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ======//
//
// Purpose:
//
// $NoKeywords: $
//===========================================================================//
#ifndef PHYFILE_H
#define PHYFILE_H
#pragma once
typedef struct phyheader_s
{
int size;
int id;
short numsolids;
short align;
int checksum; // checksum of source .rmdl file
int keyvalueindex;
} phyheader_t;
#endif // PHYFILE_H