Files
c-prime/application/demos/example.opengl/engine/texture2D.c
2025-11-17 10:28:09 +01:00

24 lines
313 B
C

/*
* This file is automaticaly generated, Please dont edit this file!
*/
#include <engine/texture2D.h>
texture2D texture2D_new() {
texture2D instance;
return instance;
}
texture2D * texture2D_newPointer() {
struct texture2D * pointer = malloc( sizeof ( struct texture2D ) );
return pointer;
}