summaryrefslogtreecommitdiff
path: root/signs.h
diff options
context:
space:
mode:
authordominik <dominik@openttd.org>2005-01-25 15:38:36 +0000
committerdominik <dominik@openttd.org>2005-01-25 15:38:36 +0000
commitd439221c62fb6dc95192c68659fd68e4a85f60a2 (patch)
tree7e95f59e35354d3577e4d77bd75a70d6b754d706 /signs.h
parent03ba24dd6548e4d96e6090f6d18b7dbfdbb96bd8 (diff)
downloadopenttd-d439221c62fb6dc95192c68659fd68e4a85f60a2.tar.xz
(svn r1667) - Feature: Signs are now shown in the color of the player who created them
(Note: The player information is currently not stored in savegames. Upon loading a game the signs will all be gray again)
Diffstat (limited to 'signs.h')
-rw-r--r--signs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/signs.h b/signs.h
index fd8ba206c..98934ef78 100644
--- a/signs.h
+++ b/signs.h
@@ -7,6 +7,8 @@ typedef struct SignStruct {
int32 x;
int32 y;
byte z;
+ byte owner; // placed by this player. Anyone can delete them though.
+ // OWNER_NONE for gray signs from old games.
uint16 index;
} SignStruct;