17 lines
274 B
C++
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
|