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
commit596da29170b0b808d7e36ee940e8bfc2a408e523 (patch)
treece753b6523ca68a804440ea55ba396cd5551157f /openttd.h
parent98a98ab15eacae3500596a5ca43f3273d93d1140 (diff)
downloadopenttd-596da29170b0b808d7e36ee940e8bfc2a408e523.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;