SuperSpaceInvaderTurboApoca.../src/game_managers.cpp
2021-12-16 11:56:17 +01:00

15 lines
271 B
C++

#include "game.h"
/** Makes the player play once
*/
void Game::managePlayer(){
}
/** Makes the invaders play once, and check lower bounds
*
* @return true if the invaders crossed the first line of the grid, else false
*/
bool Game::manageInvaders(){
return false;
}