summaryrefslogtreecommitdiff
path: root/src/cutScene.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/cutScene.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/cutScene.h b/src/cutScene.h
new file mode 100644
index 0000000..e875822
--- /dev/null
+++ b/src/cutScene.h
@@ -0,0 +1,25 @@
+#ifndef __CUT_SCENE_H
+#define __CUT_SCENE_H
+
+#include <common.h>
+#include <game.h>
+#include <g3dhax.h>
+#include <sfx.h>
+
+void CutSceneDrawFunc();
+
+class dScCutScene_c : public dScene_c {
+ public:
+ dScCutScene_c();
+
+ int onCreate();
+ int onDelete();
+ int onExecute();
+ int onDraw();
+
+ static dScCutScene_c *build();
+ static dScCutScene_c *instance;
+};
+
+#endif
+