Files
factorygame/tiles/belt.h
2025-06-07 00:57:00 +02:00

18 lines
382 B
C

//
// Created by bruno on 4/24/25.
//
#ifndef FACTORYGAME_BELT_H
#define FACTORYGAME_BELT_H
#include <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#include "../util/util.h"
struct Tile;
void generateBeltFrames(SDL_Renderer *renderer);
void renderBelt(int x, int y, int w, int h, OrientDirection dir, SDL_Rect playerRect, SDL_Renderer *renderer);
#endif //FACTORYGAME_BELT_H