A simple asteroids-like game utilizing various Mbed-compatible sensors

Dependencies:   mbed 4DGL-uLCD-SE PinDetect

Committer:
sralph3
Date:
Thu Jan 03 19:56:27 2019 +0000
Revision:
8:137330cfe63d
Parent:
0:f2cc64948895
Jan 3, 2019

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sralph3 0:f2cc64948895 1 #ifndef SSE_H
sralph3 0:f2cc64948895 2 #define SSE_H
sralph3 0:f2cc64948895 3
sralph3 0:f2cc64948895 4 #include <string>
sralph3 0:f2cc64948895 5 #include <iostream>
sralph3 0:f2cc64948895 6 #include "ScreenObject.h"
sralph3 0:f2cc64948895 7 class SSE : public ScreenObject
sralph3 0:f2cc64948895 8 {
sralph3 0:f2cc64948895 9 public:
sralph3 0:f2cc64948895 10 void draw();
sralph3 0:f2cc64948895 11 void update();
sralph3 0:f2cc64948895 12 SSE();
sralph3 0:f2cc64948895 13 bool outB();
sralph3 0:f2cc64948895 14
sralph3 0:f2cc64948895 15 private:
sralph3 0:f2cc64948895 16 double x;
sralph3 0:f2cc64948895 17 double y;
sralph3 0:f2cc64948895 18 double z;
sralph3 0:f2cc64948895 19 };
sralph3 0:f2cc64948895 20 #endif