7 lines
189 B
C++
7 lines
189 B
C++
//
|
|
// Created by Benjamin on 1/26/2022.
|
|
//
|
|
|
|
#include "Path.h"
|
|
|
|
Path::Path(sf::Texture &texture, float x, float y, float scale, int origin) : Terrain(texture, x, y, scale, origin) {}
|