/* ---------------------------------------------------------------------------- * yage.hpp * * Copyright (c) 2017 Yann Herklotz Grave -- MIT License * See file LICENSE for more details * ---------------------------------------------------------------------------- */ #ifndef YAGE_HPP #define YAGE_HPP #include "camera2d.hpp" #include "glslprogram.hpp" #include "imageloader.hpp" #include "inputmanager.hpp" #include "iomanager.hpp" #include "picopng.hpp" #include "resourcemanager.hpp" #include "spritebatch.hpp" #include "texture.hpp" #include "vertex.hpp" #include "window.hpp" #include #include namespace yage { bool init() { return SDL_Init(SDL_INIT_VIDEO); } void quit() { SDL_Quit(); } }; #endif