This commit is contained in:
bMorgan01 2022-03-08 10:18:34 -07:00
parent 54f5313273
commit b49080f675
83 changed files with 2083 additions and 0 deletions

17
Terrain.h Normal file
View file

@ -0,0 +1,17 @@
//
// Created by Benjamin on 1/26/2022.
//
#ifndef SFML_TEMPLATE_TERRAIN_H
#define SFML_TEMPLATE_TERRAIN_H
#include "Sprite.h"
class Terrain : public Sprite {
public:
Terrain(sf::Texture &, float, float, float, int);
};
#endif //SFML_TEMPLATE_TERRAIN_H