src/signs_type.h
author rubidium
Thu, 29 May 2008 15:13:28 +0000
changeset 9413 7042a8ec3fa8
parent 8790 4a7a796b3976
child 9913 d9ce89020cc0
permissions -rw-r--r--
(svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
/* $Id$ */

/** @file signs_type.h Types related to signs */

#ifndef SIGNS_TYPE_H
#define SIGNS_TYPE_H

typedef uint16 SignID;
struct Sign;

enum {
	INVALID_SIGN = 0xFFFF,
};

#endif /* SIGNS_TYPE_H */