Team Fortress 2 Source Code as on 22/4/2020
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.

28 lines
748 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $Workfile: $
  6. // $Date: $
  7. //
  8. //-----------------------------------------------------------------------------
  9. // $Log: $
  10. //
  11. // $NoKeywords: $
  12. //=============================================================================//
  13. #ifndef COLLISIONMODEL_H
  14. #define COLLISIONMODEL_H
  15. #pragma once
  16. extern void Cmd_CollisionText( void );
  17. extern int DoCollisionModel( bool separateJoints );
  18. // execute after simplification, before writing
  19. extern void CollisionModel_Build( void );
  20. // execute during writing
  21. extern void CollisionModel_Write( long checkSum );
  22. void CollisionModel_ExpandBBox( Vector &mins, Vector &maxs );
  23. #endif // COLLISIONMODEL_H