mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
21 lines
433 B
C
21 lines
433 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;
|
|||
|
int solidCount;
|
|||
|
long checkSum; // checksum of source .mdl file
|
|||
|
} phyheader_t;
|
|||
|
|
|||
|
#endif // PHYFILE_H
|