Doxygen comments added

Dependencies:   mbed Gamepad N5110

Revision:
3:5409b50b01b0
Child:
6:bc580b480ac8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Pipes/Pipes.h	Tue Apr 23 17:09:28 2019 +0000
@@ -0,0 +1,33 @@
+#ifndef PIPES_H
+#define PIPES_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+
+class Pipes {
+    public:
+    
+    void init(int x, int height);
+    void draw(N5110 &lcd);
+
+private:
+
+int _x;
+int _height;
+
+};
+
+
+
+
+
+
+
+
+
+
+
+
+
+#endif
\ No newline at end of file