mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
* follow naming convention of studio.h. * renamed studiocache_t to studiomodelcache_t. * merged 'ModelHeader' struct with studiomodelcache_t. * add 'physfile_t' structure.
23 lines
455 B
C
23 lines
455 B
C
//===== 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
|