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 _PLAYER_H_ 00007 #define _PLAYER_H_ 00008 00014 #include "character.h" 00015 00016 class Player : public Character 00017 { 00018 public: 00019 Player(Object *object, World *world); 00020 00021 virtual void update(btScalar dt); 00022 virtual bool event(const irr::SEvent& e); 00023 }; 00024 00025 #endif // _PLAYER_H_