summaryrefslogtreecommitdiffstats
path: root/engine/include/flatland.h
diff options
context:
space:
mode:
authorancarola <raffaele.ancarola@epfl.ch>2019-01-19 13:07:37 +0100
committerancarola <raffaele.ancarola@epfl.ch>2019-01-19 13:07:37 +0100
commit3922c797671cdc23d9233ff76909489e45fd0006 (patch)
treed385754f00159b93a8966fb5080a51dc2d0eb4a0 /engine/include/flatland.h
parentedas (diff)
downloadflatland-3922c797671cdc23d9233ff76909489e45fd0006.tar.gz
flatland-3922c797671cdc23d9233ff76909489e45fd0006.zip
Test two completed successfully
Diffstat (limited to '')
-rw-r--r--engine/include/flatland.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/engine/include/flatland.h b/engine/include/flatland.h
index 18b1a89..27d2d12 100644
--- a/engine/include/flatland.h
+++ b/engine/include/flatland.h
@@ -35,9 +35,15 @@ struct flat_status
unsigned char loop:1;
};
-int init_flatland(const FlatWindow&, gameloop, const flat_status&, float fps = 60);
+int init_flatland(FlatWindow*, gameloop, const flat_status&, float fps = 60);
void quit_flatland();
+/* Core channel */
+
+class SignalChannel;
+
+SignalChannel * getCoreChannel();
+
/* Window and status accessors */
FlatWindow * getFlatWindow();