aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/side_effects/side_effect.h
diff options
context:
space:
mode:
authorwhitertandrek2018-03-18 16:54:53 +0200
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commitf62132c4f3738ce24fa3cf0e449417baeb2e86fe (patch)
tree1e91f48db03d7eaa485e48b1ff3b13e2166d04bd /engines/pink/side_effects/side_effect.h
parent45458542da30b544f9ac3ba2adc9aeffac3ab93e (diff)
downloadscummvm-rg350-f62132c4f3738ce24fa3cf0e449417baeb2e86fe.tar.gz
scummvm-rg350-f62132c4f3738ce24fa3cf0e449417baeb2e86fe.tar.bz2
scummvm-rg350-f62132c4f3738ce24fa3cf0e449417baeb2e86fe.zip
PINK: Added SideEffect, SideEffectExit, SideEffectVariable, SideEffectModuleVariable and
HandlerSequences Currently engine is able to load first GamePage;
Diffstat (limited to 'engines/pink/side_effects/side_effect.h')
-rw-r--r--engines/pink/side_effects/side_effect.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/engines/pink/side_effects/side_effect.h b/engines/pink/side_effects/side_effect.h
new file mode 100644
index 0000000000..628fe1e883
--- /dev/null
+++ b/engines/pink/side_effects/side_effect.h
@@ -0,0 +1,38 @@
+/* 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 PINK_SIDE_EFFECT_H
+#define PINK_SIDE_EFFECT_H
+
+#include <engines/pink/object.h>
+
+namespace Pink {
+
+class SideEffect : public Object {
+public:
+
+
+};
+
+}
+
+#endif