aboutsummaryrefslogtreecommitdiffstats
path: root/src/application/Application.hpp
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-04-06 08:18:16 +0000
committerJoursoir <chat@joursoir.net>2021-04-06 08:18:16 +0000
commite72ef2c3a6f46e5ddc7324b1fe55fb15fec5c5f7 (patch)
tree2ec7231d96959c2cc8e22a355f12f2879bf79ffc /src/application/Application.hpp
parentf111b7f74024ba6d47c0d802185406aa9eacfa50 (diff)
downloadspace-simulator-e72ef2c3a6f46e5ddc7324b1fe55fb15fec5c5f7.tar.gz
space-simulator-e72ef2c3a6f46e5ddc7324b1fe55fb15fec5c5f7.tar.bz2
space-simulator-e72ef2c3a6f46e5ddc7324b1fe55fb15fec5c5f7.zip
add wrapper for window library
Diffstat (limited to 'src/application/Application.hpp')
-rw-r--r--src/application/Application.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/application/Application.hpp b/src/application/Application.hpp
new file mode 100644
index 0000000..0c0c539
--- /dev/null
+++ b/src/application/Application.hpp
@@ -0,0 +1,13 @@
+#ifndef ENGINE_APPLICATION_H
+#define ENGINE_APPLICATION_H
+
+class Application {
+ Application() { }
+public:
+ static int Init();
+ static void Terminate();
+ static void SwapInterval(int interval);
+ static float GetTime();
+};
+
+#endif /* ENGINE_APPLICATION_H */