blob: 6ab5dbe8fb2cd15602c1f67a1cd6eaef024c8f07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef BULLET_HPP
#define BULLET_HPP
#include "Item.hpp"
class Bullet : protected Item
{
public:
virtual bool use(RangedWeapon &weapon);
virtual bool decreaseAmount(int qnt);
};
#endif
|