Files
LearnOpenGL/src/Primitives/texture.h
2023-06-02 18:01:45 +02:00

13 lines
220 B
C++

#pragma once
#include <glad/glad.h>
#include <GLFW/glfw3.h>
#include <string>
struct Texture{
GLuint id;
std::string type;
std::string path;
};
Texture* CreateTexture(unsigned int width, unsigned int height);