Kern Fowler / Mbed 2 deprecated Donkey_Kong_Game

Dependencies:   mbed

lib/Instructions/Instructions.h

Committer:
Kern_EL17KJTF
Date:
2019-05-09
Revision:
23:ecb74e52163d
Parent:
22:d265f506446b
Child:
29:be053907f5c7

File content as of revision 23:ecb74e52163d:

#ifndef INSTRUCTIONS_H
#define INSTRUCTIONS_H

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

/** Instructions Class
*@brief This class is for the instructions menu screen.
*@author Kern Fowler
*@version 1.0
*@date May 2019
*/

class Instructions {

public:
/** Instructions Constructor 
@brief Builds my default Instructions constructor.
@details This does not have any setup. 
*/
Instructions();
/** Instructions Destructor 
@brief Builds my default Instructions destructor.
@details This does not have any setup. 
*/
~Instructions();
// Mutators

/** 
*@brief Prints the Instructions menu.
*@param pad The Gamepad class is used.
*@param lcd The N5110 class is used.
*@details Prints various text to screen relating to how to play the game.
*/
void instructions_run(Gamepad &pad, N5110 &lcd);
};

#endif