aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/ui/end_credits.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2018-03-27 18:43:27 +0200
committerEugene Sandulenko2018-03-27 18:43:27 +0200
commita8efe852a81711c72b23d2f8da56eaec88abc45c (patch)
treedb7b7b29bca91464a5ac8e70cc2a4c93efa95b0a /engines/bladerunner/ui/end_credits.cpp
parent5602d57a91ca8d8a2c97e990df7811abad14660a (diff)
downloadscummvm-rg350-a8efe852a81711c72b23d2f8da56eaec88abc45c.tar.gz
scummvm-rg350-a8efe852a81711c72b23d2f8da56eaec88abc45c.tar.bz2
scummvm-rg350-a8efe852a81711c72b23d2f8da56eaec88abc45c.zip
BLADERUNNER: Added skeleton for EndCredits
Diffstat (limited to 'engines/bladerunner/ui/end_credits.cpp')
-rw-r--r--engines/bladerunner/ui/end_credits.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/engines/bladerunner/ui/end_credits.cpp b/engines/bladerunner/ui/end_credits.cpp
new file mode 100644
index 0000000000..0051fad534
--- /dev/null
+++ b/engines/bladerunner/ui/end_credits.cpp
@@ -0,0 +1,37 @@
+/* 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.
+ *
+ */
+
+#include "bladerunner/ui/end_credits.h"
+
+namespace BladeRunner {
+
+EndCredits::EndCredits(BladeRunnerEngine *vm) {
+ _vm = vm;
+}
+
+EndCredits::~EndCredits() {
+}
+
+void EndCredits::show() {
+}
+
+} // End of namespace BladeRunner