RegisterTypes.h 383 B

123456789101112131415
  1. // Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
  2. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  3. // SPDX-License-Identifier: MIT
  4. #pragma once
  5. JPH_NAMESPACE_BEGIN
  6. /// Register all physics types with the factory
  7. extern void RegisterTypes();
  8. /// Unregisters all types with the factory and cleans up the default material
  9. extern void UnregisterTypes();
  10. JPH_NAMESPACE_END