This commit is contained in:
andrewchilicki
2025-02-08 15:12:24 -05:00
parent 902993bde1
commit 71bd81f2b9
60 changed files with 99637 additions and 12 deletions

8
libs/Image/Image.h Normal file
View File

@ -0,0 +1,8 @@
#pragma once
#include <GL/glew.h>
struct Image
{
GLuint texture;
int width, height;
};