1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef GUN_H #define GUN_H #include "point.h" #include "object.h" #include "SFML/Graphics.hpp" class Gun : public Object { public: Gun(); Gun(const Point &point, const sf::Texture &texture, const int width, const int height); void draw(sf::RenderWindow &window); }; #endif