ELEC2645 (2018/19) / Mbed 2 deprecated el17dg

Dependencies:   mbed

Fork of el17dg by Dmitrijs Griskovs

Committer:
Noximilien
Date:
Tue Mar 12 21:46:10 2019 +0000
Revision:
11:cf2ba52e8b7e
Parent:
10:f02413ae09fe
Child:
12:bfe3a3deaac3
Have made medium stars (the same principle as in small star) - This is the code before making the enemy ship with the same method and the background planet.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Noximilien 3:10918b0f7a7d 1 #ifndef GAME_H
Noximilien 3:10918b0f7a7d 2 #define GAME_H
Noximilien 3:10918b0f7a7d 3
Noximilien 3:10918b0f7a7d 4
Noximilien 4:02c63aaa2df9 5 class Game{
Noximilien 4:02c63aaa2df9 6 public:
Noximilien 4:02c63aaa2df9 7 bool updateAndDraw();
Noximilien 4:02c63aaa2df9 8 private:
Noximilien 5:2b9181bc5c89 9 void shipMovment();
Noximilien 9:5ad5501c702e 10 void updateAndDrawBlasts();
Noximilien 9:5ad5501c702e 11 void fireNewBlast();
Noximilien 11:cf2ba52e8b7e 12 void newSmallStarFlies();
Noximilien 11:cf2ba52e8b7e 13 void updateAndDrawSmallStars();
Noximilien 11:cf2ba52e8b7e 14
Noximilien 11:cf2ba52e8b7e 15 void newMediumStarFlies();
Noximilien 11:cf2ba52e8b7e 16 void updateAndDrawMediumStars();
Noximilien 3:10918b0f7a7d 17 };
Noximilien 3:10918b0f7a7d 18
Noximilien 3:10918b0f7a7d 19
Noximilien 3:10918b0f7a7d 20 #endif