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
Diff: Levelengine.h
- Revision:
- 2:725c213b2396
- Child:
- 3:d27ee2440829
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Levelengine.h Wed Mar 20 01:32:31 2019 +0000
@@ -0,0 +1,26 @@
+#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);
+ void gravity(N5110 &lcd);
+ int get_pixel(unsigned int row, unsigned int column) const;
+
+private:
+
+ Minerengine engine;
+
+
+};
+
+#endif
\ No newline at end of file