24 lines
488 B
C
24 lines
488 B
C
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef PHYFILE_H
|
|
#define PHYFILE_H
|
|
#pragma once
|
|
|
|
#include "datamap.h"
|
|
|
|
typedef struct phyheader_s
|
|
{
|
|
DECLARE_BYTESWAP_DATADESC();
|
|
int size;
|
|
int id;
|
|
int solidCount;
|
|
long checkSum; // checksum of source .mdl file
|
|
} phyheader_t;
|
|
|
|
#endif // PHYFILE_H
|