Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
465 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef PHYFILE_H
  8. #define PHYFILE_H
  9. #pragma once
  10. #include "datamap.h"
  11. typedef struct phyheader_s
  12. {
  13. DECLARE_BYTESWAP_DATADESC();
  14. int size;
  15. int id;
  16. int solidCount;
  17. int checkSum; // checksum of source .mdl file
  18. } phyheader_t;
  19. #endif // PHYFILE_H