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-21
- Revision:
- 4:b92da6a09c8b
- Parent:
- 3:d27ee2440829
- Child:
- 5:0655bddafd9e
- Child:
- 6:866281ce2b44
File content as of revision 4:b92da6a09c8b:
#ifndef Levelengine_H
#define Levelengine_H
#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "Minerengine.h"
class Levelengine
{
public:
Levelengine();
~Levelengine();
void test_level(N5110 &lcd);
private:
Minerengine miner;
};
#endif