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
Spaceship/Spaceship.cpp
- Committer:
- fy14lkaa
- Date:
- 2019-05-05
- Revision:
- 106:73d5d818ae7d
- Parent:
- 105:b206078335a3
- Child:
- 107:83b0bc100600
File content as of revision 106:73d5d818ae7d:
#include "Spaceship.h"
Spaceship::Spaceship()
{
}
Spaceship::~Spaceship()
{
}
void Spaceship::init(int x_spaceship,int y_spaceship, int speed_spaceship)
{
_x_spaceship= x_spaceship;
_y_spaceship= y_spaceship;
_speed_spaceship= speed_spaceship;
}