aboutsummaryrefslogtreecommitdiff
path: root/engines/director/lingo/lingo-the.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-07-04 16:55:08 +0200
committerEugene Sandulenko2016-08-03 23:40:36 +0200
commit22baf62312a94f272f8780697853140ae3b30434 (patch)
tree38509be3c55fbf3bf952ee456904682c1671d2fd /engines/director/lingo/lingo-the.h
parent97e80a0c7a376817b4304c57a355ebfe30e4ee12 (diff)
downloadscummvm-rg350-22baf62312a94f272f8780697853140ae3b30434.tar.gz
scummvm-rg350-22baf62312a94f272f8780697853140ae3b30434.tar.bz2
scummvm-rg350-22baf62312a94f272f8780697853140ae3b30434.zip
DIRECTOR: Lingo: Added stub for 'the' entities
Diffstat (limited to 'engines/director/lingo/lingo-the.h')
-rw-r--r--engines/director/lingo/lingo-the.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/engines/director/lingo/lingo-the.h b/engines/director/lingo/lingo-the.h
new file mode 100644
index 0000000000..e867283d8e
--- /dev/null
+++ b/engines/director/lingo/lingo-the.h
@@ -0,0 +1,52 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+ #ifndef DIRECTOR_LINGO_LINGO_THE_H
+ #define DIRECTOR_LINGO_LINGO_THE_H
+
+namespace Director {
+
+enum TheEntity {
+ kTheNOEntity = 0,
+ kTheFrame = 1,
+ kThePathName,
+ kTheMovie,
+ kTheMouseH,
+ kTheMouseV,
+ kTheSprite,
+ kThePerFrameHook,
+ kTheTicks,
+ kTheTimer,
+ kTheTimeoutLength
+};
+
+enum TheField {
+ kTheNOField = 0,
+ kTheCastNum = 1,
+ kTheCursor,
+ kTheLocH,
+ kTheLocV
+};
+
+} // End of namespace Director
+
+#endif