Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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