Class containing methods to draw a ball within the maze game with the specified position, size and fill style parameters.

Ball.h

Committer:
el15mh
Date:
2017-04-04
Revision:
0:4c58ed26b6ea
Child:
1:ba8bb10ebd5a

File content as of revision 0:4c58ed26b6ea:

//
//  ball.h
//  
//
//  Created by Max Houghton on 19/03/2017.
//
//

#ifndef BALL_H
#define BALL_H

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

class Ball
{
    
public:
    
    Ball();
    ~Ball();
    
    void draw(N5110 &lcd, int x, int y, int radius);
    
private:
    
    int _radius;
    int _x;
    int _y;
    
};

#endif /* BALL_H */