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 _CAPSULE_H_ 00007 #define _CAPSULE_H_ 00008 00014 #include "object.h" 00015 00016 #include <btScalar.h> 00017 00018 class Capsule : public Object 00019 { 00020 public: 00021 Capsule(btScalar radius, btScalar height, irr::scene::ISceneNode *node, btScalar mass); 00022 00023 }; 00024 00025 #endif