00001 /* 00002 This code is licensed under GNU General Public License (GPL) v2. 00003 It has been written by Luc BRUANT aka fullmetalcoder <fullmetalcoder@hotmail.fr> 00004 */ 00005 00006 #ifndef _BOX_H_ 00007 #define _BOX_H_ 00008 00014 #include "object.h" 00015 00016 class btVector3; 00017 00018 class Box : public Object 00019 { 00020 public: 00021 Box(const btVector3& halfExtents, irr::scene::ISceneNode *node, btScalar mass); 00022 00023 }; 00024 00025 #endif