Remove static keyword

This commit is contained in:
Mylloon 2022-05-15 21:02:08 +02:00
parent a2b6cbe0c3
commit 85369ea443
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -5,7 +5,7 @@
int dimensions[] = {1280, 720}; int dimensions[] = {1280, 720};
// Animations // Animations
static GL4DHanime animations[] = { GL4DHanime animations[] = {
{ 5000, cube, NULL, NULL }, { 5000, cube, NULL, NULL },
{ 2500, cube, cube2, fondu }, { 2500, cube, cube2, fondu },
{ 5000, cube2, NULL, NULL }, { 5000, cube2, NULL, NULL },
@ -13,7 +13,7 @@ static GL4DHanime animations[] = {
}; };
// Comportement à la fermeture du programme // Comportement à la fermeture du programme
static void fermeture(void); void fermeture(void);
int main(int argc, char *argv[]) { int main(int argc, char *argv[]) {
if(!gl4duwCreateWindow(argc, argv, "Démo Anri KENNEL", 10, 10, dimensions[0], dimensions[1], GL4DW_SHOWN)) { if(!gl4duwCreateWindow(argc, argv, "Démo Anri KENNEL", 10, 10, dimensions[0], dimensions[1], GL4DW_SHOWN)) {