src/landscape_type.h
author Tero Marttila <terom@fixme.fi>
Fri, 18 Jul 2008 21:28:42 +0300
changeset 11175 020c61e39c94
parent 10444 3876060cdef7
permissions -rw-r--r--
added a GCS_AVAILABLE status, and changed the colours used in the download GUI
/* $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 */