SI COLMI IL CALICE

This commit is contained in:
malloc 2018-09-05 16:59:30 -05:00
parent 5d6370eafb
commit 4882194b6d

View file

@ -3,7 +3,11 @@
#include <SDL.h>
#include <GL/glew.h>
#include "utils/time.hpp"
#include <iterator>
#include <forward_list>
#include <chrono>
namespace sosc {
namespace ui {
@ -11,7 +15,9 @@ class Texture {
public:
private:
sosc::time last_render;
std::forward_list<GLuint> texture_ids;
std::forward_list<GLuint>::iterator texture_id_iter;
};
}}