mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
25 lines
453 B
C
25 lines
453 B
C
//========= Copyright 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;
|
|
int checkSum; // checksum of source .mdl file
|
|
} phyheader_t;
|
|
|
|
#endif // PHYFILE_H
|