aboutsummaryrefslogtreecommitdiff
path: root/engines/mortevielle/mouse.cpp
diff options
context:
space:
mode:
authorStrangerke2011-12-26 21:30:46 +0100
committerStrangerke2012-04-06 08:18:25 +0200
commit1c441062a05c9ff256100179a746a84baa153c88 (patch)
treebc5c9d1f2c08377460afd027924ca782c0dd5603 /engines/mortevielle/mouse.cpp
parent4edebbe11174e9cd82c9d4495aece84b65f0adcf (diff)
downloadscummvm-rg350-1c441062a05c9ff256100179a746a84baa153c88.tar.gz
scummvm-rg350-1c441062a05c9ff256100179a746a84baa153c88.tar.bz2
scummvm-rg350-1c441062a05c9ff256100179a746a84baa153c88.zip
MORTEVIELLE: Add namespace and standard header
Diffstat (limited to 'engines/mortevielle/mouse.cpp')
-rw-r--r--engines/mortevielle/mouse.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/engines/mortevielle/mouse.cpp b/engines/mortevielle/mouse.cpp
index 9ce1788b2c..a2102b6146 100644
--- a/engines/mortevielle/mouse.cpp
+++ b/engines/mortevielle/mouse.cpp
@@ -1,3 +1,32 @@
+/* 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.
+ *
+ */
+
+/*
+ * This code is based on original Mortville Manor DOS source code
+ * Copyright (c) 1988-1989 Lankhor
+ */
+
+namespace MORTEVIELLE {
+
const int m_arrow = 0;
const int m_point_hand = 1;
@@ -457,3 +486,5 @@ void mov_mouse(boolean &funct, char &key) {
p_key = keypressed();
}
}
+
+} // End of namespace MORTEVIELLE