src/group_type.h
author truebrain
Mon, 31 Mar 2008 11:31:44 +0000
branchnoai
changeset 9845 c359062b4db0
parent 9837 c9ec4f82e0d0
permissions -rw-r--r--
(svn r12511) [NoAI] -Add (WIP): AI Debug GUI. For now it is a stripped down copy of performance details. In future it will allow reloading of AI, changing settings, and reading the log of the AI
/* $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 */