src/group_type.h
author smatz
Fri, 25 Apr 2008 16:33:40 +0000
changeset 10363 d47dabff0d29
parent 9266 416385a64dcb
permissions -rw-r--r--
(svn r12904) -Fix [FS#1953]: remove trams from savegames saved in OTTD without tram support, it is better than to simply crash
/* $Id$ */

/** @file group_type.h Types of a group. */

#ifndef GROUP_TYPE_H
#define GROUP_TYPE_H

typedef uint16 GroupID;

enum {
	ALL_GROUP     = 0xFFFD,
	DEFAULT_GROUP = 0xFFFE, ///< ungrouped vehicles are in this group.
	INVALID_GROUP = 0xFFFF,
};

struct Group;

#endif /* GROUP_TYPE_H */