Reworked the files before the big cleanup of the code.

This commit is contained in:
Zed A. Shaw 2025-01-15 10:26:44 -05:00
parent 6533f950d2
commit 8eae4b9420
30 changed files with 26 additions and 57 deletions

View file

@ -123,15 +123,15 @@ void load_textures() {
texture[i].resize(texWidth * texHeight);
}
loadImage(texture[0], "pics/tile16.png");
loadImage(texture[1], "pics/tile02.png");
loadImage(texture[2], "pics/tile03.png");
loadImage(texture[3], "pics/tile32.png");
loadImage(texture[4], "pics/tile05.png");
loadImage(texture[5], "pics/tile17.png");
loadImage(texture[6], "pics/tile10.png");
loadImage(texture[7], "pics/tile01.png");
loadImage(texture[8], "pics/portal.png");
loadImage(texture[0], "assets/tile16.png");
loadImage(texture[1], "assets/tile02.png");
loadImage(texture[2], "assets/tile03.png");
loadImage(texture[3], "assets/tile32.png");
loadImage(texture[4], "assets/tile05.png");
loadImage(texture[5], "assets/tile17.png");
loadImage(texture[6], "assets/tile10.png");
loadImage(texture[7], "assets/tile01.png");
loadImage(texture[8], "assets/portal.png");
}
void draw_sfml_rect(sf::RenderWindow &window, sf::Vector2f pos, sf::Vector2f size, uint8_t color) {