diff options
author | Nao Pross <naopross@thearcway.org> | 2019-01-21 04:48:02 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2019-01-21 04:48:02 +0100 |
commit | ca091e358a8b02423ba304bfca055712b3a70881 (patch) | |
tree | 71252ee4f0316387fd2c335fe299313b5b313167 /wrapsdl.cpp | |
parent | Initial commit, add makefile, .gitignore and debug header (diff) | |
download | libwsdl2-ca091e358a8b02423ba304bfca055712b3a70881.tar.gz libwsdl2-ca091e358a8b02423ba304bfca055712b3a70881.zip |
Add basic window wrapper
Diffstat (limited to '')
-rw-r--r-- | wrapsdl.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/wrapsdl.cpp b/wrapsdl.cpp deleted file mode 100644 index e91ec8c..0000000 --- a/wrapsdl.cpp +++ /dev/null @@ -1,19 +0,0 @@ -#include "wrapsdl.hpp" -#include "debug.hpp" - -extern "C" { -#include <SDL2/SDL.h> -} - -bool wrapsdl::initialize(void) { - if (SDL_InitSubSystem(SDL_INIT_VIDEO) < 0) { - npdebug("failed to initialize sdl video subsystem"); - return false; - } - - return true; -} - -void wrapsdl::quit(void) { - SDL_Quit(); -} |