#ifndef TILE_H_ #define TILE_H_ #include "raylib.h" typedef struct Tile{ int textureId; int x; int y; int z; } Tile; #endif