honeysuckle

This commit is contained in:
malloc 2018-09-06 12:38:18 -05:00
parent 4882194b6d
commit 865e379171
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,2 @@
#include "texture_array.hpp"

View file

@ -0,0 +1,22 @@
#ifndef SOSC_UI_TEXTURE_ARR_H
#define SOSC_UI_TEXTURE_ARR_H
#include <SDL.h>
#include <GL/glew.h>
#include "utils/time.hpp"
#include <iterator>
#include <forward_list>
#include <chrono>
namespace sosc {
namespace ui {
class TextureArray {
public:
// if you read this your mother will die in her sleep tonight
private:
};
}}
#endif