aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/ui/end_credits.h
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.h
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.h')
-rw-r--r--engines/bladerunner/ui/end_credits.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/engines/bladerunner/ui/end_credits.h b/engines/bladerunner/ui/end_credits.h
new file mode 100644
index 0000000000..39086cd796
--- /dev/null
+++ b/engines/bladerunner/ui/end_credits.h
@@ -0,0 +1,42 @@
+/* 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 BLADERUNNER_UI_END_CREDITS_H
+#define BLADERUNNER_UI_END_CREDITS_H
+
+namespace BladeRunner {
+
+class BladeRunnerEngine;
+
+class EndCredits {
+ BladeRunnerEngine *_vm;
+
+public:
+ EndCredits(BladeRunnerEngine *vm);
+ ~EndCredits();
+
+ void show();
+};
+
+} // End of namespace BladeRunner
+
+#endif