Kern Fowler / Mbed 2 deprecated Donkey_Kong_Game

Dependencies:   mbed

lib/Instructions/Instructions.h

Committer:
Kern_EL17KJTF
Date:
2019-05-08
Revision:
14:d6fbbb912425
Child:
22:d265f506446b
Child:
33:3894a7f846a0

File content as of revision 14:d6fbbb912425:

/*
ELEC2645 Project
Instructions.h
Class file for Instructions in Donkey Kong game.
*/

#ifndef INSTRUCTIONS_H
#define INSTRUCTIONS_H

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

class Instructions
{

    public:

    Instructions();

    ~Instructions();

    void instructions_run(Gamepad &pad, N5110 &lcd);

};

#endif