Nemesis game, stats

Ship1.h

Committer:
musallambseiso
Date:
2017-04-01
Revision:
5:b822aaa6200d

File content as of revision 5:b822aaa6200d:

#ifndef SHIP1_H
#define SHIP1_H

#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "Friendly.h"

class Ship1
{

public:
    Ship1();
    ~Ship1();
    void init(int size,int speed);
    void draw(N5110 &lcd);
    void update();
    /// accessors and mutators
    void set_velocity(Vector2D v);
    Vector2D get_velocity();
    Vector2D get_pos();
    void set_pos(Vector2D p);
    
private:

    Vector2D _velocity;
    int _size;
    int _x;
    int _y;
};
#endif