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
Animation/Animation.h
- Committer:
- el15as
- Date:
- 2017-04-30
- Revision:
- 5:158e2951654b
- Parent:
- 4:1f7f32f3e017
- Child:
- 6:33fd1797beb4
File content as of revision 5:158e2951654b:
#ifndef ANIMATION_H
#define ANIMATION_H
#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
class Animation
{
public:
Animation();
~Animation();
void spawn(N5110 &lcd, intVector2D starting_position);
void death(N5110 &lcd, intVector2D position, int frame);
void finish(N5110 &lcd, intVector2D position);
int spawnCycle;
private:
};
#endif