From 22baf62312a94f272f8780697853140ae3b30434 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Mon, 4 Jul 2016 16:55:08 +0200 Subject: DIRECTOR: Lingo: Added stub for 'the' entities --- engines/director/lingo/lingo-the.h | 52 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 engines/director/lingo/lingo-the.h (limited to 'engines/director/lingo/lingo-the.h') 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 -- cgit v1.2.3