10 lines
299 B
C
10 lines
299 B
C
|
#include "main.h"
|
||
|
|
||
|
#ifndef SCENE_H
|
||
|
#define SCENE_H
|
||
|
|
||
|
void InitialiserPastilles(PIXELS *pastilles, PIXELS *serpent, int longueur_serpent);
|
||
|
PIXELS gen_pastille(PIXELS *serpent,PIXELS *pastilles,int longueur_serpent);
|
||
|
void DessinerScene(PIXELS *pastilles, PIXELS *serpent, int longueur_serpent);
|
||
|
|
||
|
#endif
|