Files @ r8984:b9a96c1e0b58
Branch filter:

Location: cpp/openttd-patchpack/source/src/group_type.h

smatz
(svn r12778) -Codechange: add the NORETURN attribute to *allocError() functions
/* $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 */