X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=ent_route.h;h=ecc3278b72714522d31a58864a5e543537ad9e10;hb=4eccfd7252f8ff165670842df537441afae5458b;hp=786d85087595596e4b4ec793a4098fc734a871f3;hpb=4eb81766e4e7c54599b057ebf57b7fab01cd0726;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/ent_route.h b/ent_route.h index 786d850..ecc3278 100644 --- a/ent_route.h +++ b/ent_route.h @@ -1,9 +1,11 @@ -#ifndef ENT_ROUTE_H -#define ENT_ROUTE_H - +#pragma once #include "entity.h" -static void ent_route_call( world_instance *world, ent_call *call ); -static void ent_route_preupdate( ent_route *route, int active ); +struct global_ent_route +{ + struct gui_helper *helper_weekly, *helper_alltime; +} +extern global_ent_route; -#endif /* ENT_ROUTE_H */ +void ent_route_call( world_instance *world, ent_call *call ); +void ent_route_preupdate( ent_route *route, int active );