Initial commit
This commit is contained in:
23
application/demos/example.opengl/engine/quadMesh.c
Normal file
23
application/demos/example.opengl/engine/quadMesh.c
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* This file is automaticaly generated, Please dont edit this file!
|
||||
*/
|
||||
#include <engine/quadMesh.h>
|
||||
|
||||
|
||||
|
||||
quadMesh quadMesh_new() {
|
||||
|
||||
quadMesh instance;
|
||||
|
||||
return instance;
|
||||
|
||||
}
|
||||
|
||||
quadMesh * quadMesh_newPointer() {
|
||||
|
||||
struct quadMesh * pointer = malloc( sizeof ( struct quadMesh ) );
|
||||
|
||||
return pointer;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user