summaryrefslogtreecommitdiff
path: root/openttd.h
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-10-27 10:27:38 +0000
committerDarkvater <Darkvater@openttd.org>2006-10-27 10:27:38 +0000
commit7a3fb176db1d4b8fee34aff10041a765ac2afb80 (patch)
treece753b6523ca68a804440ea55ba396cd5551157f /openttd.h
parentf49372feaa5fec7d5beeaf9c6f6935cb2af67d55 (diff)
downloadopenttd-7a3fb176db1d4b8fee34aff10041a765ac2afb80.tar.xz
(svn r6955) -Codechange: Change some variable names for _textmessage_box, and replace 5 different
global variables with a single struct.
Diffstat (limited to 'openttd.h')
-rw-r--r--openttd.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/openttd.h b/openttd.h
index 6c477b3da..307c2aee4 100644
--- a/openttd.h
+++ b/openttd.h
@@ -12,6 +12,11 @@ typedef struct Rect {
int left,top,right,bottom;
} Rect;
+typedef struct Oblong {
+ int x, y;
+ int width, height;
+} Oblong;
+
typedef struct BoundingRect {
int width;
int height;