mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-23 01:59:43 +08:00
8a6d1c6cd2
* Fix compilation for windows, setup ambuild * Add built tier1 and mathlib for win64 * Ensure compilation is working on windows and linux * Add -fPIC * Add compiled libs, with optimisation enabled * Added windows lib * Fix hl2sdk for windows * Longs are the devil * Fix up threadtools functions * Add updated libs * Rework lib naming, and package script * Update lib directory according to new packaging --------- Co-authored-by: Kenzzer <kenzzer@users.noreply.github.com>
24 lines
491 B
C
24 lines
491 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;
|
|
int32_t checkSum; // checksum of source .mdl file
|
|
} phyheader_t;
|
|
|
|
#endif // PHYFILE_H
|