icongen now makes a sprite sheet for the map which should be easier to work with.

This commit is contained in:
Zed A. Shaw 2025-07-08 13:09:39 -04:00
parent dbc2000434
commit d6e2b64140
5 changed files with 136 additions and 43 deletions

View file

@ -131,8 +131,9 @@
* I am horribly bad at trigonometry and graphics algorithms, so if you've got an idea to improve them
* or find a bug shoot me an email at help@learncodethehardway.com.
*/
namespace shiterator { using std::vector, std::queue, std::array; using
std::min, std::max, std::floor;
namespace shiterator {
using std::vector, std::queue, std::array;
using std::min, std::max, std::floor;
template<typename T>
using BaseRow = vector<T>;