| 123456789101112131415161718192021222324 |
- /*
- * Copyright (c) 2012-2014 Daniele Bartolini and individual contributors.
- * License: https://github.com/taylor001/crown/blob/master/LICENSE
- */
- #pragma once
- namespace crown
- {
- /// @defgroup Physics Physics
- /// Global physics-related functions
- ///
- /// @ingroup Physics
- namespace physics_globals
- {
- /// Initializes the physics system.
- /// This is the place where to create and initialize per-application objects.
- void init();
- /// It should reverse the actions performed by physics_globals::init().
- void shutdown();
- } // namespace physics_globals
- } // namespace crown
|