Kern Fowler / Mbed 2 deprecated Donkey_Kong_Game

Dependencies:   mbed

lib/Controls/Controls.h

Committer:
Kern_EL17KJTF
Date:
2019-05-08
Revision:
13:94abfe83a294
Child:
19:8400ecdb69e9

File content as of revision 13:94abfe83a294:

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

#ifndef CONTROLS_H
#define CONTROLS_H

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

class Controls
{

    public:

    Controls();
    
    ~Controls();

    void controls_run(Gamepad &pad, N5110 &lcd);
};

#endif