1
0
Fork 0
Univerxel/src/client/render/gl/Texture.hpp

14 lines
178 B
C++

#pragma once
#include <string>
#include <GLFW/glfw3.h>
namespace render::gl {
class Texture {
public:
static GLuint CreatePtr(const std::string &name, bool linear);
};
}