physics.h 576 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2012-2014 Daniele Bartolini and individual contributors.
  3. * License: https://github.com/taylor001/crown/blob/master/LICENSE
  4. */
  5. #pragma once
  6. namespace crown
  7. {
  8. /// @defgroup Physics Physics
  9. /// Global physics-related functions
  10. ///
  11. /// @ingroup Physics
  12. namespace physics_globals
  13. {
  14. /// Initializes the physics system.
  15. /// This is the place where to create and initialize per-application objects.
  16. void init();
  17. /// It should reverse the actions performed by physics_globals::init().
  18. void shutdown();
  19. } // namespace physics_globals
  20. } // namespace crown