Snake vs Block Game to be run upon K64F.

Dependencies:   mbed

MenuClasses/Tutorial/Tutorial.h

Committer:
AhmedPlaymaker
Date:
2019-04-29
Revision:
60:d3a9e0e4a0de
Child:
78:10e5cc013806

File content as of revision 60:d3a9e0e4a0de:

#ifndef TUTORIAL_H
#define TUTORIAL_H

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

class Tutorial
{
    public:
    
    Tutorial();
    ~Tutorial();
    
    /** Implement Tutorial
    *
    *   This function is used to configure Tutorial.
    */
    
    void Implement(N5110 &lcd, Gamepad &pad);
    
    /** game Pad
    *
    *   This function introduces the gamepad to the user.
    */

    void gamePad(N5110 &lcd, Gamepad &pad);
    
};
#endif