Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Diff: Alien/Alien.cpp
- Revision:
- 12:be491ab6e742
- Parent:
- 10:9189419fda68
- Child:
- 13:b85f14d35be1
--- a/Alien/Alien.cpp Wed Apr 01 11:23:25 2020 +0000 +++ b/Alien/Alien.cpp Wed Apr 01 14:40:29 2020 +0000 @@ -1,9 +1,9 @@ #include "Alien.h" -void Alien::init(int y, int size) { +void Alien::init(int x, int y, int size) { Alive = true; - X = WIDTH/2 - Size/2; + X = x; Y = y; Size = size; Speed = 1;