ELEC2645 (2016/17) / Mbed 2 deprecated 2645_Project_el15as

Dependencies:   mbed

Animation/Animation.h

Committer:
el15as
Date:
2017-05-02
Revision:
7:b54323241435
Parent:
6:33fd1797beb4
Child:
10:95842278bd66

File content as of revision 7:b54323241435:

#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, Gamepad &pad, bool soundOn);

    int spawnCycle;

private:


};
#endif