(svn r12501) -Codechange: split signs.h.

This commit is contained in:
rubidium
2008-03-31 07:25:49 +00:00
parent b1e1c13420
commit a0895d57fa
15 changed files with 75 additions and 35 deletions

15
src/signs_type.h Normal file
View File

@@ -0,0 +1,15 @@
/* $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 */