]> git.localhorst.tv Git - tacos.git/blobdiff - src/app/init.cpp
basic floor idea
[tacos.git] / src / app / init.cpp
index 146719b3c039eb128c9541b8cf067311126000e9..52c86c0f9fab415d474459d53e28ecc528b2ffd9 100644 (file)
@@ -1,5 +1,6 @@
 #include "init.hpp"
 
+#include "config.hpp"
 #include "error.hpp"
 
 #include <alut.h>
@@ -85,4 +86,14 @@ InitTTF::~InitTTF() noexcept {
        TTF_Quit();
 }
 
+
+Init::Init(const Config &config)
+: sdl()
+, gl(config.double_buffer, config.multi_sample)
+, img()
+, ttf()
+, alut() {
+
+}
+
 }