aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/dialog.h
diff options
context:
space:
mode:
authorBendegúz Nagy2016-07-25 16:27:24 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commite8bdaee8bf1404f42203c69def0a1f834f2ad386 (patch)
treeeaf4d8cd9e904aafda7bec7daa26611d40b3f630 /engines/dm/dialog.h
parent02c8f286e79cbcf4e3b6ad383567c3ac08d4fe1c (diff)
downloadscummvm-rg350-e8bdaee8bf1404f42203c69def0a1f834f2ad386.tar.gz
scummvm-rg350-e8bdaee8bf1404f42203c69def0a1f834f2ad386.tar.bz2
scummvm-rg350-e8bdaee8bf1404f42203c69def0a1f834f2ad386.zip
DM: Add DialogMan
Diffstat (limited to 'engines/dm/dialog.h')
-rw-r--r--engines/dm/dialog.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/engines/dm/dialog.h b/engines/dm/dialog.h
new file mode 100644
index 0000000000..1cd5a6f441
--- /dev/null
+++ b/engines/dm/dialog.h
@@ -0,0 +1,39 @@
+/* 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.
+*
+*/
+
+/*
+* Based on the Reverse Engineering work of Christophe Fontanel,
+* maintainer of the Dungeon Master Encyclopaedia (http://dmweb.free.fr/)
+*/
+
+#include "dm.h"
+
+
+namespace DM {
+
+class DialogMan {
+ DMEngine *_vm;
+public:
+ explicit DialogMan(DMEngine *vm);
+};
+
+} \ No newline at end of file