(svn r12986) -Codechange: move the landscape and transport related types from openttd.h to their own headers.

This commit is contained in:
rubidium
2008-05-07 09:07:19 +00:00
parent 8fea5a62c9
commit 7ccda80b0b
26 changed files with 84 additions and 32 deletions

20
src/landscape_type.h Normal file
View File

@@ -0,0 +1,20 @@
/* $Id$ */
/** @file landscape_type.h Types related to the landscape. */
#ifndef LANDSCAPE_TYPE_H
#define LANDSCAPE_TYPE_H
typedef byte LandscapeID;
/* Landscape types */
enum {
LT_TEMPERATE = 0,
LT_ARCTIC = 1,
LT_TROPIC = 2,
LT_TOYLAND = 3,
NUM_LANDSCAPE = 4,
};
#endif /* LANDSCAPE_TYPE_H */