PhysicsObject.cpp 391 B

1234567891011121314151617
  1. // Copyright (C) 2009-2020, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #include <anki/physics/PhysicsObject.h>
  6. #include <anki/physics/PhysicsWorld.h>
  7. namespace anki
  8. {
  9. HeapAllocator<U8> PhysicsObject::getAllocator() const
  10. {
  11. return m_world->getAllocator();
  12. }
  13. } // end namespace anki