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.
Dependencies: mbed
Levelengine.h
- Committer:
- el17arm
- Date:
- 2019-03-28
- Revision:
- 12:adf4ec04ced2
- Parent:
- 11:61f28e3448d3
- Child:
- 14:dc3524d11921
File content as of revision 12:adf4ec04ced2:
#ifndef Levelengine_H
#define Levelengine_H
#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "Minerengine.h"
class Levelengine
{
public:
Levelengine();
~Levelengine();
void central_cavern(N5110 &lcd);
private:
Minerengine miner;
};
#endif