Initial commit
This commit is contained in:
23
application/demos/example.opengl/engine/texture2D.c
Normal file
23
application/demos/example.opengl/engine/texture2D.c
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* 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;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user