BodyNode.h 489 B

1234567891011121314151617181920212223242526272829
  1. // Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #pragma once
  6. #include <AnKi/Scene/SceneNode.h>
  7. namespace anki
  8. {
  9. /// @addtogroup scene
  10. /// @{
  11. /// Node that gets affected by physics.
  12. class BodyNode : public SceneNode
  13. {
  14. public:
  15. BodyNode(SceneGraph* scene, CString name);
  16. ~BodyNode();
  17. private:
  18. class FeedbackComponent;
  19. };
  20. /// @}
  21. } // end namespace anki