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.

29 lines
851 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: The main manager of the physics
  4. //
  5. // $Revision: $
  6. // $NoKeywords: $
  7. //===========================================================================//
  8. #include "physicsmanager.h"
  9. #include "legion.h"
  10. #include "tier2/tier2.h"
  11. #include "tier1/convar.h"
  12. //-----------------------------------------------------------------------------
  13. // Singleton accessor
  14. //-----------------------------------------------------------------------------
  15. static CPhysicsManager s_PhysicsManager;
  16. extern CPhysicsManager *g_pPhysicsManager = &s_PhysicsManager;
  17. //-----------------------------------------------------------------------------
  18. // Per-frame update
  19. //-----------------------------------------------------------------------------
  20. void CPhysicsManager::Update( )
  21. {
  22. }