aboutsummaryrefslogtreecommitdiff
path: root/scumm/verbs.h
diff options
context:
space:
mode:
authorMax Horn2002-11-29 15:13:49 +0000
committerMax Horn2002-11-29 15:13:49 +0000
commit72c672e14c80ded80465a1a41ae04523e8a3ac25 (patch)
tree6fdddbb0b1ad105d50c3ee584aa8e7c675f95f9a /scumm/verbs.h
parent91e3accc850f1e0a4d9f2154846b9e8229a142f5 (diff)
downloadscummvm-rg350-72c672e14c80ded80465a1a41ae04523e8a3ac25.tar.gz
scummvm-rg350-72c672e14c80ded80465a1a41ae04523e8a3ac25.tar.bz2
scummvm-rg350-72c672e14c80ded80465a1a41ae04523e8a3ac25.zip
cleanup
svn-id: r5747
Diffstat (limited to 'scumm/verbs.h')
-rw-r--r--scumm/verbs.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/scumm/verbs.h b/scumm/verbs.h
new file mode 100644
index 0000000000..50570ffd73
--- /dev/null
+++ b/scumm/verbs.h
@@ -0,0 +1,40 @@
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2002 The ScummVM project
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ */
+
+#ifndef VERBS_H
+#define VERBS_H
+
+#include "scummsys.h"
+
+struct VerbSlot {
+ int16 x, y;
+ int16 right, bottom;
+ int16 oldleft, oldtop, oldright, oldbottom;
+ uint8 verbid;
+ uint8 color, hicolor, dimcolor, bkcolor, type;
+ uint8 charset_nr, curmode;
+ uint8 saveid;
+ uint8 key;
+ bool center;
+ uint8 field_1B;
+ uint16 imgindex;
+};
+
+#endif