summaryrefslogtreecommitdiff
path: root/src/tiledfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tiledfile.h')
-rw-r--r--src/tiledfile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tiledfile.h b/src/tiledfile.h
index d8c98e9..fb9c789 100644
--- a/src/tiledfile.h
+++ b/src/tiledfile.h
@@ -12,8 +12,6 @@ typedef struct TiledMap {
void textureFromPixels(Texture2D *texOut, Color *pixels, int width, int height);
-void renderTilemapTexture(Texture2D *texOut, TiledMap tiledMap);
-
void setTiledMapTile(TiledMap tiledMap, int pos[2], char tile);
char getTiledMapTile(TiledMap tiledMap, int pos[2]);
@@ -21,3 +19,5 @@ char getTiledMapTile(TiledMap tiledMap, int pos[2]);
TiledMap loadTiledMap(char * filename);
void saveTiledMap(char * filename, TiledMap tiledMap);
+
+TiledMap newTiledMap(Image atlas, int tileSize, int width, int height);