12 lines
213 B
C
12 lines
213 B
C
#ifndef DEMO_UTILS_H
|
|
#define DEMO_UTILS_H 1
|
|
|
|
#include <GL4D/gl4duw_SDL2.h>
|
|
|
|
// Récupère un delta-temps
|
|
double get_dt(double *, GLboolean);
|
|
|
|
// Bind and load a matrix
|
|
void bindAndLoadf(const char *name);
|
|
|
|
#endif
|