Files
LumonMDR/libs/Image/Image.h

8 lines
95 B
C
Raw Permalink Normal View History

2025-02-08 15:12:24 -05:00
#pragma once
#include <GL/glew.h>
struct Image
{
GLuint texture;
int width, height;
};