StaticCollisionNode.h 553 B

12345678910111213141516171819202122232425262728
  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. #include <AnKi/Resource/Forward.h>
  8. #include <AnKi/Physics/Forward.h>
  9. namespace anki
  10. {
  11. /// @addtogroup scene
  12. /// @{
  13. /// Node that interacts with physics.
  14. class StaticCollisionNode : public SceneNode
  15. {
  16. public:
  17. StaticCollisionNode(SceneGraph* scene, CString name);
  18. ~StaticCollisionNode();
  19. };
  20. /// @}
  21. } // end namespace anki