15 lines
271 B
C++
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;
|
|
|
|
} |