summaryrefslogtreecommitdiff
path: root/src/signs_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/signs_base.h')
-rw-r--r--src/signs_base.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/signs_base.h b/src/signs_base.h
index 1c677db17..e92a05e2f 100644
--- a/src/signs_base.h
+++ b/src/signs_base.h
@@ -19,12 +19,12 @@ typedef Pool<Sign, SignID, 16, 64000> SignPool;
extern SignPool _sign_pool;
struct Sign : SignPool::PoolItem<&_sign_pool> {
- char *name;
- ViewportSign sign;
- int32 x;
- int32 y;
- int32 z;
- Owner owner; // placed by this company. Anyone can delete them though. OWNER_NONE for gray signs from old games.
+ char *name;
+ TrackedViewportSign sign;
+ int32 x;
+ int32 y;
+ int32 z;
+ Owner owner; // placed by this company. Anyone can delete them though. OWNER_NONE for gray signs from old games.
Sign(Owner owner = INVALID_OWNER);
~Sign();