Add empty function definitions

Add definitions for every function that does nothing for now.
-> now able to implement and call those functions already
This commit is contained in:
jonny_jr9 2023-11-10 12:54:33 +01:00
parent 3e40be47cf
commit ffbe61a6e5
4 changed files with 52 additions and 3 deletions

View File

@ -1 +1,5 @@
#include "input.h"
#include "input.h"
void processInputEvent(){
return;
}

View File

@ -1 +1,18 @@
#include "menu.h"
#include "menu.h"
void showStartScreen(){
return;
}
void showLeaderboard(){
return;
}
void showSettings(){
return;
}
void menuHandleInput(int event){
return;
}

View File

@ -1 +1,5 @@
#include "render.h"
void renderGame(){
return;
}

View File

@ -1 +1,25 @@
#include "snake.h"
#include "snake.h"
void snakeInit(){
return;
}
void snakeGrow(){
return;
}
void snakeMove(){
return;
}
void snakeSetDir(snakeDirection_t dir){
return;
}
bool snakeIsAlive(){
return true;
}
void snakeSetHeadPos(){
return;
}