honeysuckle
This commit is contained in:
parent
4882194b6d
commit
865e379171
2 changed files with 24 additions and 0 deletions
2
src/client/ui/texture_array.cpp
Normal file
2
src/client/ui/texture_array.cpp
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
#include "texture_array.hpp"
|
||||||
|
|
22
src/client/ui/texture_array.hpp
Normal file
22
src/client/ui/texture_array.hpp
Normal 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
|
Loading…
Reference in a new issue