tower-defense-cpp/Obstacle.h
bMorgan01 b49080f675 init
2022-03-08 10:18:34 -07:00

17 lines
274 B
C++

//
// Created by Benjamin on 1/27/2022.
//
#ifndef SFML_TEMPLATE_OBSTACLE_H
#define SFML_TEMPLATE_OBSTACLE_H
#include "Sprite.h"
class Obstacle : public Sprite {
public:
explicit Obstacle(const sf::Texture &);
};
#endif //SFML_TEMPLATE_OBSTACLE_H