ELEC2645 (2018/19) / Mbed 2 deprecated el17dg

Dependencies:   mbed

Fork of el17dg by Dmitrijs Griskovs

game/game.h

Committer:
Noximilien
Date:
2019-03-31
Revision:
23:240bc00ef25b
Parent:
22:4dc3c95f2146
Child:
24:0570cb4b92d7

File content as of revision 23:240bc00ef25b:

#ifndef GAME_H
#define GAME_H

#include "geometry.h"

class Game{
public:
    bool updateAndDraw();  
    void startNewGame();
private:
    void collideEnemiesAndBlasts();
    void collideEnemiesBlastsAndPlayer();
    void collideEnemiesAndPlayer();
    void gameOver();

    //CircleBounds player_bounds;
    //CircleBounds blast_bounds;
};


#endif