Files
c-prime/application/demos/example.opengl/engine/hints.c

24 lines
281 B
C
Raw Normal View History

2025-11-17 10:28:09 +01:00
/*
* This file is automaticaly generated, Please dont edit this file!
*/
#include <engine/hints.h>
Hints Hints_new() {
Hints instance;
return instance;
}
Hints * Hints_newPointer() {
struct Hints * pointer = malloc( sizeof ( struct Hints ) );
return pointer;
}