Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef CHARACTER_H_
00008 #define CHARACTER_H_
00009
00010 #include <Wt/WText>
00011
00012 using namespace Wt;
00013
00018
00024 class Character : public WText
00025 {
00026 public:
00029 Character(const std::string& name, WContainerWidget *parent = 0);
00030
00033 void dropEvent(WDropEvent event);
00034
00035 private:
00037 std::string name_;
00038
00040 int redDrops_;
00041
00043 int blueDrops_;
00044 };
00045
00048 #endif // CHARACTER_H_