diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/map.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/map.h b/include/map.h index d1587fa..8bd5096 100644 --- a/include/map.h +++ b/include/map.h @@ -19,7 +19,7 @@ typedef struct { typedef struct Entities Entities; -Map *LoadMap(const char *filename, Entities *entities); +Map LoadMap(const char *filename, Entities *entities); bool isCollision(Map *map, Rectangle bounds); @@ -29,4 +29,4 @@ void DrawKeys(Entities *entities, Map *map); Marker *FindMarker(Map *map, const char *name); -void UnloadMap(Map *map); +void UnloadMap(Map map); |
