blob: db5cdff7da64f99abe39d769621861def255d388 (
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 : public Item
{
public:
virtual bool use() { return false; }
virtual bool decreaseAmount(unsigned qnt);
};
#endif
|