aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.cpp')
-rw-r--r--src/window.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/window.cpp b/src/window.cpp
new file mode 100644
index 0000000..17731c0
--- /dev/null
+++ b/src/window.cpp
@@ -0,0 +1,11 @@
+#include "window.hpp"
+
+int
+initWindow(void) {
+ // Initialization
+ InitWindow(SCREENWIDTH, SCREENHEIGHT, "WIP -- coolspace");
+ InitAudioDevice();
+ SetTargetFPS(60);
+
+ return (0);
+}