diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-12-04 16:09:50 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-12-04 16:09:50 +0100 |
| commit | 7b565582f6daa03ff488798013ac720cc47b8a07 (patch) | |
| tree | 7517c7f5a1c77aff312ec5dd9b405d518a7b51d7 /src/include | |
| parent | f81855917645bbcca7580d1e36fb6de8c331b82a (diff) | |
small improvements, close #48
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/world.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/world.h b/src/include/world.h index 5d76991..4407fcb 100644 --- a/src/include/world.h +++ b/src/include/world.h @@ -408,7 +408,7 @@ world_location* get_world_location_by_name(world* world, char* str); float world_location_get_price(world_location* location);
void add_truck_to_world_location(world* world, world_location* location, truck* tr);
void world_update(platform_window* window, world* world);
-world_update_result world_render(platform_window* window, world* world);
+world_update_result world_render(platform_window* window, world* world, bool interactive);
company* world_get_company_by_name(world* world, char* str);
product* world_get_product_by_name(world* world, char* str);
truck* world_get_truck_by_type(world* world, s32 type);
|
