]> jfr.im git - irc/gameservirc.git/blob - gameserv-2.0/libgameservgldl/include/GameServ/GameLayer/GameObjects/WeaponGO.h
fdd7bcadf83c61b0171a2c31f4a27ea211596756
[irc/gameservirc.git] / gameserv-2.0 / libgameservgldl / include / GameServ / GameLayer / GameObjects / WeaponGO.h
1 #ifndef __GS__WEAPON_H__
2 #define __GS__WEAPON_H__
3
4 #include <string>
5 using std::string;
6
7 #include <GameServ/GameLayer/GameObjects/GameObject.h>
8 using GameServ::GameLayer::GameObjects::GameObject;
9 #include <GameServ/GameLayer/GameObjects/ItemGO.h>
10 using GameServ::GameLayer::GameObjects::ItemGO;
11
12 namespace GameServ { namespace GameLayer { namespace GameObjects {
13
14 class WeaponGO : public ItemGO
15 {
16 public:
17 WeaponGO();
18 WeaponGO(const string &name, const int &price, const int &uses, const int &strength, const int &defense, const int &maxhealth);
19 virtual ~WeaponGO();
20
21 private:
22 };
23
24 }}}
25 #endif