aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/Bullet.hpp
blob: e38c3f29f745afbeddf352a712b5ad93933699d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef BULLET_HPP
#define BULLET_HPP

#include "Item.hpp"

class Bullet : public Item
{
public:
    bool use(RangedWeapon &weapon);
}

#endif