Files
@ r10696:8dfe83e30d01
Branch filter:
Location: cpp/openttd-patchpack/source/src/landscape_type.h - annotation
r10696:8dfe83e30d01
372 B
text/x-c
(svn r15027) -Merge: tomatos and bananas left to be, here is NoAI for all to see.
NoAI is an API (a framework) to build your own AIs in. See:
http://wiki.openttd.org/wiki/index.php/AI:Main_Page
With many thanks to:
- glx and Rubidium for their syncing, feedback and hard work
- Yexo for his feedback, patches, and AIs which tested the system very deep
- Morloth for his feedback and patches
- TJIP for hosting a challenge which kept NoAI on track
- All AI authors for testing our AI API, and all other people who helped in one way or another
-Remove: all old AIs and their cheats/hacks
NoAI is an API (a framework) to build your own AIs in. See:
http://wiki.openttd.org/wiki/index.php/AI:Main_Page
With many thanks to:
- glx and Rubidium for their syncing, feedback and hard work
- Yexo for his feedback, patches, and AIs which tested the system very deep
- Morloth for his feedback and patches
- TJIP for hosting a challenge which kept NoAI on track
- All AI authors for testing our AI API, and all other people who helped in one way or another
-Remove: all old AIs and their cheats/hacks
r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e r10233:f4b6f7cfa2ac r9126:35955a7b9d9e r10233:f4b6f7cfa2ac r10233:f4b6f7cfa2ac r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e r9126:35955a7b9d9e | /* $Id$ */
/** @file landscape_type.h Types related to the landscape. */
#ifndef LANDSCAPE_TYPE_H
#define LANDSCAPE_TYPE_H
typedef byte LandscapeID; ///< Landscape type. @see LandscapeType
/** Landscape types */
enum LandscapeType {
LT_TEMPERATE = 0,
LT_ARCTIC = 1,
LT_TROPIC = 2,
LT_TOYLAND = 3,
NUM_LANDSCAPE = 4,
};
#endif /* LANDSCAPE_TYPE_H */
|