C++ SFML Tile Map Maker
This project will make a tool to load a tile set and an empty grid to help place tiles. It will output a text file containing the tileset name and the positions of each tile in the map to be used in other projects.
Producing first window
- initially saved in the master branch
- with cmake and SFML properly installed, this repository can be used to produce the first window
git clone [email protected]:terrill37/tilemapGenerator.git tilemapGenerator
cd sfmlSample
mkdir build && cd build
cmake ..
make
- will produce the executable as listed in the
CMakeLists.txt
file
- will produce the executable as listed in the
./tileMapGenerator
(name will probably change in upcoming update)