Files @ r9288:4f5dc8362dae
Branch filter:

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

rubidium
(svn r13154) -Codechange: make a window class of the news message history window.
/* $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 */