blob: 0b94f664e68e3bf83042869b12413b14cb50e1ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $Id$ */
/** @file group_gui.h Functions/definitions that have something to do with groups. */
#ifndef GROUP_GUI_H
#define GROUP_GUI_H
#include "vehicle_type.h"
void ShowCompanyGroup(CompanyID company, VehicleType veh);
void DeleteGroupHighlightOfVehicle(const Vehicle *v);
#endif /* GROUP_GUI_H */
|